aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2011-10-11 19:44:14 +1000
committerDavid Walter Seikel2011-10-11 19:44:14 +1000
commit0c6f8b34e7d2336cdac9a86e450e5400e7a53b80 (patch)
tree78a583e87c55b6bb836cbc1fb902ed32fc292502
parentOdd things happen when compiling the test directory under 32 bit linux, but w... (diff)
downloadmeta-impy-0c6f8b34e7d2336cdac9a86e450e5400e7a53b80.zip
meta-impy-0c6f8b34e7d2336cdac9a86e450e5400e7a53b80.tar.gz
meta-impy-0c6f8b34e7d2336cdac9a86e450e5400e7a53b80.tar.bz2
meta-impy-0c6f8b34e7d2336cdac9a86e450e5400e7a53b80.tar.xz
Use the bash builtin time command, it's output is much nicer by default.
Diffstat (limited to '')
-rwxr-xr-xlinden/scripts/linux/3-compile-SL-source5
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
54function compile() { 54function 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=""
98fi 98fi
99 99
100compile 100time compile
101