From ad71d1aaaa673aa355a5b9e7b1457a39156ed766 Mon Sep 17 00:00:00 2001 From: Alexander Scheel Date: Thu, 25 Apr 2019 13:17:23 -0400 Subject: [PATCH] Fix javadocs build Since the current javadocs build process is broken (due to various non-fatal errors in the build), ignore the error code of make javadocs when building the RPM for now. Signed-off-by: Alexander Scheel --- jss.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jss.spec b/jss.spec index 20d16b510..dea16e687 100644 --- a/jss.spec +++ b/jss.spec @@ -113,7 +113,8 @@ rm -rf build && mkdir -p build && cd build -DJAVA_LIB_INSTALL_DIR=%{_jnidir} \ .. -%{__make} all javadoc +%{__make} all +%{__make} javadoc || true ctest --output-on-failure ################################################################################