[Vm-dev] [commit][3535] Avoid miosvm depending on having .

commits at squeakvm.org commits at squeakvm.org
Tue Dec 15 21:29:53 UTC 2015


Revision: 3535
Author:   eliot
Date:     2015-12-15 13:29:51 -0800 (Tue, 15 Dec 2015)
Log Message:
-----------
Avoid miosvm depending on having . in one's PATH.

Modified Paths:
--------------
    branches/Cog/build.macos32x86/squeak.cog.spur/miosvm
    branches/Cog/build.macos64x64/squeak.cog.spur/miosvm

Modified: branches/Cog/build.macos32x86/squeak.cog.spur/miosvm
===================================================================
--- branches/Cog/build.macos32x86/squeak.cog.spur/miosvm	2015-12-15 21:21:00 UTC (rev 3534)
+++ branches/Cog/build.macos32x86/squeak.cog.spur/miosvm	2015-12-15 21:29:51 UTC (rev 3535)
@@ -29,12 +29,12 @@
 	exit 1
 fi
 trap 'exit 2' HUP INT PIPE TERM
-test -n "$D" && (makeiosvm $C -d 2>&1 | tee $D;grep "BUILD .*ED" $D)
-test -n "$A" && (makeiosvm $C -a 2>&1 | tee $A;grep "BUILD .*ED" $A)
-test -n "$F" && (makeiosvm $C -s 2>&1 | tee $F;grep "BUILD .*ED" $F)
-test -n "$DT" && (makeiosvm $C -md 2>&1 | tee $DT;grep "BUILD .*ED" $DT)
-test -n "$AT" && (makeiosvm $C -ma 2>&1 | tee $AT;grep "BUILD .*ED" $AT)
-test -n "$FT" && (makeiosvm $C -ms 2>&1 | tee $FT;grep "BUILD .*ED" $FT)
+test -n "$D" && (./makeiosvm $C -d 2>&1 | tee $D;grep "BUILD .*ED" $D)
+test -n "$A" && (./makeiosvm $C -a 2>&1 | tee $A;grep "BUILD .*ED" $A)
+test -n "$F" && (./makeiosvm $C -s 2>&1 | tee $F;grep "BUILD .*ED" $F)
+test -n "$DT" && (./makeiosvm $C -md 2>&1 | tee $DT;grep "BUILD .*ED" $DT)
+test -n "$AT" && (./makeiosvm $C -ma 2>&1 | tee $AT;grep "BUILD .*ED" $AT)
+test -n "$FT" && (./makeiosvm $C -ms 2>&1 | tee $FT;grep "BUILD .*ED" $FT)
 
 test -n "$D" && (echo $D;grep "BUILD .*ED" $D)
 test -n "$A" && (echo $A;grep "BUILD .*ED" $A)

Modified: branches/Cog/build.macos64x64/squeak.cog.spur/miosvm
===================================================================
--- branches/Cog/build.macos64x64/squeak.cog.spur/miosvm	2015-12-15 21:21:00 UTC (rev 3534)
+++ branches/Cog/build.macos64x64/squeak.cog.spur/miosvm	2015-12-15 21:29:51 UTC (rev 3535)
@@ -29,12 +29,12 @@
 	exit 1
 fi
 trap 'exit 2' HUP INT PIPE TERM
-test -n "$D" && (makeiosvm $C -d 2>&1 | tee $D;grep "BUILD .*ED" $D)
-test -n "$A" && (makeiosvm $C -a 2>&1 | tee $A;grep "BUILD .*ED" $A)
-test -n "$F" && (makeiosvm $C -s 2>&1 | tee $F;grep "BUILD .*ED" $F)
-test -n "$DT" && (makeiosvm $C -md 2>&1 | tee $DT;grep "BUILD .*ED" $DT)
-test -n "$AT" && (makeiosvm $C -ma 2>&1 | tee $AT;grep "BUILD .*ED" $AT)
-test -n "$FT" && (makeiosvm $C -ms 2>&1 | tee $FT;grep "BUILD .*ED" $FT)
+test -n "$D" && (./makeiosvm $C -d 2>&1 | tee $D;grep "BUILD .*ED" $D)
+test -n "$A" && (./makeiosvm $C -a 2>&1 | tee $A;grep "BUILD .*ED" $A)
+test -n "$F" && (./makeiosvm $C -s 2>&1 | tee $F;grep "BUILD .*ED" $F)
+test -n "$DT" && (./makeiosvm $C -md 2>&1 | tee $DT;grep "BUILD .*ED" $DT)
+test -n "$AT" && (./makeiosvm $C -ma 2>&1 | tee $AT;grep "BUILD .*ED" $AT)
+test -n "$FT" && (./makeiosvm $C -ms 2>&1 | tee $FT;grep "BUILD .*ED" $FT)
 
 test -n "$D" && (echo $D;grep "BUILD .*ED" $D)
 test -n "$A" && (echo $A;grep "BUILD .*ED" $A)



More information about the Vm-dev mailing list