From a3d9b46a60083dcf7732eaaf17b03e8d7e0774a8 Mon Sep 17 00:00:00 2001 From: Pieter Hintjens Date: Thu, 4 Feb 2016 11:24:25 +0100 Subject: [PATCH] Problem: Android build is slow and noisy Solution: use --without-docs (changed from --without-documentation) and also --quiet. --- builds/android/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builds/android/build.sh b/builds/android/build.sh index f510528e..17810688 100755 --- a/builds/android/build.sh +++ b/builds/android/build.sh @@ -32,7 +32,7 @@ fi rm -rf "${cache}/libsodium" (cd "${cache}" && git clone --depth 1 git://github.com/jedisct1/libsodium.git) || exit 1 (cd "${cache}/libsodium" && ./autogen.sh \ - && ./configure "${ANDROID_BUILD_OPTS[@]}" --disable-soname-versions \ + && ./configure --quiet "${ANDROID_BUILD_OPTS[@]}" --disable-soname-versions \ && make -j 4 \ && make install) || exit 1 } @@ -47,7 +47,7 @@ LIBTOOL_EXTRA_LDFLAGS='-avoid-version' (cp -r ../.. "${cache}/libzmq" && cd "${cache}/libzmq" && make clean) (cd "${cache}/libzmq" && ./autogen.sh \ - && ./configure "${ANDROID_BUILD_OPTS[@]}" --without-documentation --with-libsodium=yes \ + && ./configure --quiet "${ANDROID_BUILD_OPTS[@]}" --without-docs --with-libsodium=yes \ && make -j 4 \ && make install) || exit 1 }