changeset 97:b5b65762dd87

Add stderr to logging output.
author Rob Landley <rob@landley.net>
date Thu, 01 Feb 2007 16:29:43 -0500
parents 137ba51ee993
children b6b4386a6c83
files build.sh
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/build.sh	Thu Feb 01 00:37:50 2007 -0500
+++ b/build.sh	Thu Feb 01 16:29:43 2007 -0500
@@ -9,12 +9,12 @@
 {
   ./download.sh || kill $PARENT
   ./host-tools.sh || kill $PARENT
-} | tee out-all.txt
+} 2>&1 | tee out-all.txt
 
 for i in "$@"
 do
   {
     ./cross-compiler.sh "$i" || kill $PARENT
     ./mini-native.sh "$i" || kill $PARENT
-  } | tee "out-$i.txt"
+  } 2>&1 | tee "out-$i.txt"
 done