diff options
Diffstat (limited to '')
-rwxr-xr-x | linden/scripts/linux/3-compile-SL-source | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/linden/scripts/linux/3-compile-SL-source b/linden/scripts/linux/3-compile-SL-source index 9a898ad..34395bb 100755 --- a/linden/scripts/linux/3-compile-SL-source +++ b/linden/scripts/linux/3-compile-SL-source | |||
@@ -54,7 +54,7 @@ source config-SL-source | |||
54 | function compile() { | 54 | function compile() { |
55 | cd $PATH_TO_SOURCES/indra | 55 | cd $PATH_TO_SOURCES/indra |
56 | echo "Compiling the client into $TEMP_DIR..." | 56 | echo "Compiling the client into $TEMP_DIR..." |
57 | nice -n 19 ionice -c 3 time ./develop.py --type=Release build | 57 | nice -n 19 ionice -c 3 ./develop.py --type=Release build |
58 | # if (($? == 0)) ; then | 58 | # if (($? == 0)) ; then |
59 | # mv -f $PATH_TO_SOURCES/indra/viewer-linux-i686*/newview/SecondLife*.tar.bz2 $HOME/ | 59 | # mv -f $PATH_TO_SOURCES/indra/viewer-linux-i686*/newview/SecondLife*.tar.bz2 $HOME/ |
60 | # fi | 60 | # fi |
@@ -97,4 +97,5 @@ else | |||
97 | FATAL_WARNINGS="" | 97 | FATAL_WARNINGS="" |
98 | fi | 98 | fi |
99 | 99 | ||
100 | compile | 100 | time compile |
101 | |||