From ff0595128b1b456fbbe9a0dbf4a418a4044ab10d Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 28 Apr 2008 20:32:31 +0000 Subject: scripts/poky-autobuild-postprocess: Fix typo git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4365 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- scripts/poky-autobuild-postprocess | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/poky-autobuild-postprocess b/scripts/poky-autobuild-postprocess index f46ce6ac14..4b13a51a0a 100755 --- a/scripts/poky-autobuild-postprocess +++ b/scripts/poky-autobuild-postprocess @@ -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 -- cgit v1.2.3-54-g00ecf