summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2016-07-27 11:22:01 -0400
committerOz Linden <oz@lindenlab.com>2016-07-27 11:22:01 -0400
commiteaed4166547ee651f343c3b0fe3a2c8748aaa81d (patch)
treef0a37d010f4e4cb13480673642663c5855071a1c
parent4a71dbda19fbf927b20779f8f6bcb68fd4bf2955 (diff)
add controls for autobuild verbosity
-rwxr-xr-xbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index cd2a9ebf5e..8276faa21f 100755
--- a/build.sh
+++ b/build.sh
@@ -95,7 +95,7 @@ pre_build()
&& [ -r "$master_message_template_checkout/message_template.msg" ] \
&& template_verifier_master_url="-DTEMPLATE_VERIFIER_MASTER_URL=file://$master_message_template_checkout/message_template.msg"
- "$autobuild" configure --quiet -c $variant -- \
+ "$autobuild" configure "${autobuild_configure_verbosity:---quiet}" -c $variant -- \
-DPACKAGE:BOOL=ON \
-DRELEASE_CRASH_REPORTING:BOOL=ON \
-DVIEWER_CHANNEL:STRING="\"$viewer_channel\"" \
@@ -114,7 +114,7 @@ package_llphysicsextensions_tpv()
if [ "$variant" = "Release" ]
then
llpetpvcfg=$build_dir/packages/llphysicsextensions/autobuild-tpv.xml
- "$autobuild" build --quiet --config-file $llpetpvcfg -c Tpv
+ "$autobuild" build "${autobuild_build_verbosity:---quiet}" --config-file $llpetpvcfg -c Tpv
# capture the package file name for use in upload later...
PKGTMP=`mktemp -t pgktpv.XXXXXX`