diff options
-rwxr-xr-x | tools/build-test.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/build-test.sh b/tools/build-test.sh index 3e7d052e0..fd6a4f87b 100755 --- a/tools/build-test.sh +++ b/tools/build-test.sh @@ -67,7 +67,7 @@ run "cd $BUILDDIR" if [ "$BUILDTOOL" = "cmake" ]; then # build with CMake - run "cmake .. -DENABLE_JAVASCRIPT=ON -DENABLE_MAN=ON -DENABLE_DOC=ON -DENABLE_TESTS=ON ${BUILDARGS}" + run "cmake .. -DENABLE_MAN=ON -DENABLE_DOC=ON -DENABLE_TESTS=ON ${BUILDARGS}" run "make VERBOSE=1 -j$(nproc)" run "sudo make install" run "ctest -V" @@ -76,7 +76,7 @@ fi if [ "$BUILDTOOL" = "autotools" ]; then # build with autotools run "../autogen.sh" - run "../configure --enable-javascript --enable-man --enable-doc --enable-tests ${BUILDARGS}" + run "../configure --enable-man --enable-doc --enable-tests ${BUILDARGS}" run "make -j$(nproc)" run "sudo make install" run "./tests/tests -v" |