summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrad kittenbrink <brad@lindenlab.com>2011-03-18 19:30:59 -0400
committerbrad kittenbrink <brad@lindenlab.com>2011-03-18 19:30:59 -0400
commitb6ec94a73b50f240a0c29998f90be2ff9322c7f6 (patch)
treedc5fdcef67e627064412dd92cbb3e861abe89d5a
parentdf2e9b85f08a752baef3ba7fe7165f1da1e89545 (diff)
Fix for broken escaping of viewer_channel variable at configuration time.
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 9248c1f628..45c3b622fb 100755
--- a/build.sh
+++ b/build.sh
@@ -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"
}