diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2016-12-21 19:11:58 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2016-12-21 19:11:58 -0500 |
commit | 7a83f26323b192b09b4017b5f4f986511345bd36 (patch) | |
tree | 7d52a560caec8f23cdd103d92cb7f980b14292fa /build.sh | |
parent | 546ead3d61d7c8d239fca461aaacf7315a26fea6 (diff) |
DRTVWR-418: Temporarily disable Mac generate_breakpad_symbols.py.
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -95,10 +95,17 @@ 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" + # nat 2016-12-21: disable generate_breakpad_symbols.py on Mac until we + # figure out why it's breaking. + if [ "$arch" == "Darwin" ] + then RELEASE_CRASH_REPORTING=OFF + else RELEASE_CRASH_REPORTING=ON + fi + "$autobuild" configure --quiet -c $variant -- \ -DPACKAGE:BOOL=ON \ -DUNATTENDED:BOOL=ON \ - -DRELEASE_CRASH_REPORTING:BOOL=ON \ + -DRELEASE_CRASH_REPORTING:BOOL="$RELEASE_CRASH_REPORTING" \ -DVIEWER_CHANNEL:STRING="\"$viewer_channel\"" \ -DGRID:STRING="\"$viewer_grid\"" \ -DLL_TESTS:BOOL="$run_tests" \ |