aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/scripts/linux/4-package-viewer
diff options
context:
space:
mode:
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