]> code.ossystems Code Review - openembedded-core.git/commitdiff
scripts/poky-autobuild-postprocess: Fix typo
authorRichard Purdie <richard@openedhand.com>
Mon, 28 Apr 2008 20:32:31 +0000 (20:32 +0000)
committerRichard Purdie <richard@openedhand.com>
Mon, 28 Apr 2008 20:32:31 +0000 (20:32 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4365 311d38ba-8fff-0310-9ca6-ca027cbcb966

scripts/poky-autobuild-postprocess

index f46ce6ac14483baac6b20889c6859d79543b34db..4b13a51a0a8b319ce470de03f8c67d218fef0041 100755 (executable)
@@ -104,7 +104,7 @@ if [ "x$DISTRO" = "xpoky" ]; then
 fi
 
 for FILE in ${FILES[@]}; do
-    for $FILE2 in `find -name $FILE`; do
+    for FILE2 in `find -name $FILE`; do
         if [ ! -e "$DEST/$FILE2" ]; then
             cp $FILE2 $DEST
         fi
@@ -112,7 +112,7 @@ for FILE in ${FILES[@]}; do
 done
 
 for FILE in ${COMPRESS_FILES[@]}; do
-    for $FILE2 in `find -name $FILE`; do
+    for FILE2 in `find -name $FILE`; do
         if [ ! -e "$DEST/$FILE2.bz2" ]; then
             bzip2 $FILE2
             cp $FILE2.bz2 $DEST