diff options
author | David Walter Seikel | 2011-10-11 19:44:14 +1000 |
---|---|---|
committer | David Walter Seikel | 2011-10-11 19:44:14 +1000 |
commit | 0c6f8b34e7d2336cdac9a86e450e5400e7a53b80 (patch) | |
tree | 78a583e87c55b6bb836cbc1fb902ed32fc292502 | |
parent | Odd things happen when compiling the test directory under 32 bit linux, but w... (diff) | |
download | meta-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-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 | |||