summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorMark Palange (Mani) <palange@lindenlab.com>2010-10-22 14:27:56 -0700
committerMark Palange (Mani) <palange@lindenlab.com>2010-10-22 14:27:56 -0700
commitb30a0b4bdb8493592ac918b1a8649d7dbb3bae51 (patch)
tree4688747aca7195cc996451cc4bd376bf1764eb4b /build.sh
parentbe1c9a867440e4306348887ce07c88ba6cd31241 (diff)
parentd3f3dd0998ee8a2159a98d2d8b4b02dce6176252 (diff)
merge
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 25ff0f368d..b372168f98 100755
--- a/build.sh
+++ b/build.sh
@@ -59,6 +59,7 @@ pre_build()
-t $variant \
-G "$cmake_generator" \
configure \
+ -DGRID:STRING="$viewer_grid" \
-DVIEWER_CHANNEL:STRING="$viewer_channel" \
-DVIEWER_LOGIN_CHANNEL:STRING="$login_channel" \
-DINSTALL_PROPRIETARY:BOOL=ON \
@@ -114,11 +115,15 @@ then
if [ -x "$top/../buildscripts/hg/bin/build.sh" ]
then
exec "$top/../buildscripts/hg/bin/build.sh" "$top"
+ elif [ -r "$top/README" ]
+ then
+ cat "$top/README"
+ exit 1
else
cat <<EOF
This script, if called in a development environment, requires that the branch
independent build script repository be checked out next to this repository.
-This repository is located at http://hg.lindenlab.com/parabuild/buildscripts
+This repository is located at http://hg.secondlife.com/buildscripts
EOF
exit 1
fi