diff options
author | brad kittenbrink <brad@lindenlab.com> | 2011-03-18 19:30:59 -0400 |
---|---|---|
committer | brad kittenbrink <brad@lindenlab.com> | 2011-03-18 19:30:59 -0400 |
commit | b6ec94a73b50f240a0c29998f90be2ff9322c7f6 (patch) | |
tree | dc5fdcef67e627064412dd92cbb3e861abe89d5a | |
parent | df2e9b85f08a752baef3ba7fe7165f1da1e89545 (diff) |
Fix for broken escaping of viewer_channel variable at configuration time.
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -51,7 +51,7 @@ pre_build() { local variant="$1" begin_section "Pre$variant" - "$AUTOBUILD" configure -c $variant -- -DPACKAGE:BOOL=ON -DRELEASE_CRASH_REPORTING:BOOL=ON -DUSE_PRECOMPILED_HEADERS=FALSE -DVIEWER_CHANNEL:STRING="$viewer_channel" + "$AUTOBUILD" configure -c $variant -- -DPACKAGE:BOOL=ON -DRELEASE_CRASH_REPORTING:BOOL=ON -DUSE_PRECOMPILED_HEADERS=FALSE "-DVIEWER_CHANNEL:STRING=\"$viewer_channel\"" "-DVIEWER_LOGIN_CHANNEL:STRING=\"$viewer_login_channel\"" end_section "Pre$variant" } |