zcutil/build.sh: Turn off verbosity by default

Users who want verbose output (like CI) can call ./zcutil/build.sh V=1
This commit is contained in:
Jack Grigg 2019-11-12 10:33:28 +00:00
parent 42a58f1e23
commit d458cf627a
1 changed files with 5 additions and 2 deletions

View File

@ -58,6 +58,9 @@ $0 [ --enable-proton ] [ MAKEARGS... ]
If --enable-proton is passed, Zcash is configured to build the Apache Qpid Proton
library required for AMQP support. This library is not built by default.
For verbose output, use:
./zcutil/build.sh V=1
EOF
exit 0
fi
@ -76,7 +79,7 @@ eval "$MAKE" --version
as --version
ld -v
HOST="$HOST" BUILD="$BUILD" WITH_PROTON="$PROTON_ARG" "$MAKE" "$@" -C ./depends/ V=1
HOST="$HOST" BUILD="$BUILD" WITH_PROTON="$PROTON_ARG" "$MAKE" "$@" -C ./depends/
./autogen.sh
CONFIG_SITE="$PWD/depends/$HOST/share/config.site" ./configure "$PROTON_ARG" $CONFIGURE_FLAGS CXXFLAGS='-g'
"$MAKE" "$@" V=1
"$MAKE" "$@"