aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/scripts/linux/4-package-viewer
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-02-03 15:23:22 +1000
committerDavid Walter Seikel2014-02-03 15:23:22 +1000
commitd056a17f05a1f90708f554651475e116a2ddbd68 (patch)
tree07fa4f1cca2a25548b8d2d6b4752b07d8efbd2ff /linden/scripts/linux/4-package-viewer
parentUpdating tree and volume LOD. These go to eleven. (diff)
parentFix up OTR prefs to not crash. (diff)
downloadmeta-impy-next.zip
meta-impy-next.tar.gz
meta-impy-next.tar.bz2
meta-impy-next.tar.xz
Merge branch 'next' of github.com:onefang/meta-impy into nextHEADnext
Diffstat (limited to 'linden/scripts/linux/4-package-viewer')
-rwxr-xr-xlinden/scripts/linux/4-package-viewer11
1 files changed, 9 insertions, 2 deletions
diff --git a/linden/scripts/linux/4-package-viewer b/linden/scripts/linux/4-package-viewer
index b2bff7f..a1a74f2 100755
--- a/linden/scripts/linux/4-package-viewer
+++ b/linden/scripts/linux/4-package-viewer
@@ -1,5 +1,12 @@
1#!/bin/bash 1#!/bin/bash
2 2
3cd ../../indra/viewer-linux-* 3source config-SL-source
4make package
5 4
5if [ "$OSTYPE" == "cygwin" ] ; then
6 # Assumes version has been passed in from outside, coz Windows insists on adding crap to python output.
7 cd ../../indra/build-nmake/
8 iscc newview/${TYPE}/package/${version}-Windows-x86.iss
9else
10 cd ../../indra/viewer-linux-*
11 make package
12fi