diff options
author | Richard Purdie <richard@openedhand.com> | 2008-04-28 20:32:31 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-04-28 20:32:31 +0000 |
commit | ff0595128b1b456fbbe9a0dbf4a418a4044ab10d (patch) | |
tree | b0da16de217be54457c5dd43ba47940681900ab4 /scripts | |
parent | 15218d47fd067ec3333ebdb84c9109aa09463f7c (diff) | |
download | poky-ff0595128b1b456fbbe9a0dbf4a418a4044ab10d.tar.gz |
scripts/poky-autobuild-postprocess: Fix typo
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4365 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/poky-autobuild-postprocess | 4 |
1 files changed, 2 insertions, 2 deletions
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 | |||
104 | fi | 104 | fi |
105 | 105 | ||
106 | for FILE in ${FILES[@]}; do | 106 | for FILE in ${FILES[@]}; do |
107 | for $FILE2 in `find -name $FILE`; do | 107 | for FILE2 in `find -name $FILE`; do |
108 | if [ ! -e "$DEST/$FILE2" ]; then | 108 | if [ ! -e "$DEST/$FILE2" ]; then |
109 | cp $FILE2 $DEST | 109 | cp $FILE2 $DEST |
110 | fi | 110 | fi |
@@ -112,7 +112,7 @@ for FILE in ${FILES[@]}; do | |||
112 | done | 112 | done |
113 | 113 | ||
114 | for FILE in ${COMPRESS_FILES[@]}; do | 114 | for FILE in ${COMPRESS_FILES[@]}; do |
115 | for $FILE2 in `find -name $FILE`; do | 115 | for FILE2 in `find -name $FILE`; do |
116 | if [ ! -e "$DEST/$FILE2.bz2" ]; then | 116 | if [ ! -e "$DEST/$FILE2.bz2" ]; then |
117 | bzip2 $FILE2 | 117 | bzip2 $FILE2 |
118 | cp $FILE2.bz2 $DEST | 118 | cp $FILE2.bz2 $DEST |