changeset 1100:10606df984d1

Need to build a separate "hello" for each process, or buildall.sh dies with conflicts.
author Rob Landley <rob@landley.net>
date Sun, 06 Jun 2010 12:01:23 -0500
parents 3c6263354ca9
children 271eae15163d
files host-tools.sh
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/host-tools.sh	Sat Jun 05 00:10:12 2010 -0500
+++ b/host-tools.sh	Sun Jun 06 12:01:23 2010 -0500
@@ -66,8 +66,8 @@
 
 if [ "$BUILD_STATIC" != none ]
 then
-  $CC "$SOURCES/toys/hello.c" --static -o "$WORK/hello" &&
-  rm "$WORK/hello"
+  $CC "$SOURCES/toys/hello.c" --static -o "$WORK/hello-$$" &&
+  rm "$WORK/hello-$$"
 
   if [ $? -ne 0 ]
   then