changeset 916:991a74436235

Build the rest of cross-static's host arch along with other architectures, and move hw- targets to explicitly build after non-hw targets.
author Rob Landley <rob@landley.net>
date Thu, 03 Dec 2009 01:26:26 -0600
parents a541c5a96ff3
children a181d81540ed
files sources/more/buildall.sh
diffstat 1 files changed, 10 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/sources/more/buildall.sh	Thu Dec 03 01:18:39 2009 -0600
+++ b/sources/more/buildall.sh	Thu Dec 03 01:26:26 2009 -0600
@@ -37,16 +37,22 @@
 
 cp packages/MANIFEST build || dienow
 
-# Build all the remaining cross compilers, possibly in parallel
+# Build all non-hw targets, possibly in parallel
 
-for i in ${ARCHES} ${HWARCHES}
+for i in ${ARCHES}
 do
-  [ "$i" != "$STATIC_CROSS_COMPILER_HOST" ] &&
-    maybe_fork "./build.sh $i 2>&1 | tee build/logs/build-${i}.txt | maybe_quiet"
+  maybe_fork "./build.sh $i 2>&1 | tee build/logs/build-${i}.txt | maybe_quiet"
 done
 
 wait
 
+# Build all hw targets, possibly in parallel
+
+for i in ${HWARCHES}
+do
+  maybe_fork "./build.sh $i 2>&1 | tee build/logs/build-${i}.txt | maybe_quiet"
+done
+
 # Run smoketest.sh for each non-hw target.
 
 for i in ${ARCHES}