changeset 1143:94173723a272

Bug workaround for FORK=1 build-control-images.sh
author Rob Landley <rob@landley.net>
date Sun, 27 Jun 2010 15:22:37 -0500
parents f2cd0b4f3936
children 319327a27998
files sources/more/build-control-images.sh
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/sources/more/build-control-images.sh	Sat Jun 26 19:39:52 2010 -0500
+++ b/sources/more/build-control-images.sh	Sun Jun 27 15:22:37 2010 -0500
@@ -9,5 +9,7 @@
 for i in sources/native-builds/*.sh
 do
   SCRIPTNAME=$(echo $i | sed 's@.*/\(.*\)\.sh@\1@')
-  maybe_fork "$i build/control-images/$SCRIPTNAME.hdc | maybe_quiet"
+  # Forking doesn't work yet due to extract collisions with the same package
+  #maybe_fork "$i build/control-images/$SCRIPTNAME.hdc | maybe_quiet"
+  $i build/control-images/$SCRIPTNAME.hdc | maybe_quiet
 done