diff --git a/bin/build-darwin.sh b/bin/build-darwin.sh index 8ea8229626..94b9e0629c 100755 --- a/bin/build-darwin.sh +++ b/bin/build-darwin.sh @@ -69,7 +69,11 @@ fi if [ ! -e "${DIR_BUILD}/ntf/.complete" ]; then # Build and install NTF pushd "${DIR_THIRDPARTY}/ntf-core" - ./configure --prefix "${DIR_INSTALL}" --output "${DIR_BUILD}/ntf" + ./configure --prefix "${DIR_INSTALL}" \ + --output "${DIR_BUILD}/ntf" \ + --without-warnings-as-errors \ + --without-usage-examples \ + --without-applications make -j 16 make install popd diff --git a/bin/build-ubuntu.sh b/bin/build-ubuntu.sh index 750df6f741..c972bd174c 100755 --- a/bin/build-ubuntu.sh +++ b/bin/build-ubuntu.sh @@ -118,7 +118,11 @@ fi if [ ! -e "${DIR_BUILD}/ntf/.complete" ]; then # Build and install NTF pushd "${DIR_THIRDPARTY}/ntf-core" - ./configure --prefix "${DIR_INSTALL}" --output "${DIR_BUILD}/ntf" + ./configure --prefix "${DIR_INSTALL}" \ + --output "${DIR_BUILD}/ntf" \ + --without-warnings-as-errors \ + --without-usage-examples \ + --without-applications make -j 16 make install popd