changeset 1408:096ac2dfb9bd

First attempt at for-each-target didn't work with the new layout due to really stupid bug.
author Rob Landley <rob@landley.net>
date Sun, 03 Jul 2011 13:09:48 -0500
parents 662c5e9ca17c
children 8d0567d46cd7
files more/for-each-target.sh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/more/for-each-target.sh	Sat Jul 02 20:31:49 2011 -0500
+++ b/more/for-each-target.sh	Sun Jul 03 13:09:48 2011 -0500
@@ -12,7 +12,7 @@
 
 for TARGET in $ARCHES
 do
-  [ ! -f "$TARGET" ] && continue
+  [ ! -f "sources/targets/$TARGET" ] && continue
   maybe_fork "$* | maybe_quiet"
 done