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, 8 insertions, 3 deletions
diff --git a/linden/scripts/linux/4-package-viewer b/linden/scripts/linux/4-package-viewer
index b2bff7f..19d2456 100755
--- a/linden/scripts/linux/4-package-viewer
+++ b/linden/scripts/linux/4-package-viewer
@@ -1,5 +1,10 @@
1#!/bin/bash 1#!/bin/bash
2 2
3cd ../../indra/viewer-linux-* 3if [ "$OSTYPE" == "cygwin" ] ; then
4make package 4 # Assumes version has been passed in from outside, coz Windows insists on adding crap to python output.
5 5 cd ../../indra/build-nmake/
6 iscc newview/package/${version}-Windows-x86.iss
7else
8 cd ../../indra/viewer-linux-*
9 make package
10fi