summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-04-28 20:16:24 +0000
committerRichard Purdie <richard@openedhand.com>2008-04-28 20:16:24 +0000
commitf466228e14e2c4091a528ee1f0dd1c278c04581a (patch)
tree2598530ab2de3313e1423d43796b53ed724711ed /scripts
parent40d86fde50f27aa4a6ad7cc5b7eefa5f7cf8b745 (diff)
downloadpoky-f466228e14e2c4091a528ee1f0dd1c278c04581a.tar.gz
scripts/poky-autobuild: Fix directory expectations of the postprocess scripts
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4363 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/poky-autobuild3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/poky-autobuild b/scripts/poky-autobuild
index bacaca97cd..57943da5f2 100755
--- a/scripts/poky-autobuild
+++ b/scripts/poky-autobuild
@@ -40,6 +40,7 @@ POSTPROCESS=`which poky-autobuild-postprocess`
40if [ "xcomplete" = "x$BBTARGET" ]; then 40if [ "xcomplete" = "x$BBTARGET" ]; then
41 touch ./build/tmp/deploy/images/images-complete 41 touch ./build/tmp/deploy/images/images-complete
42 chmod a+w ./build/tmp/deploy/images/images-complete 42 chmod a+w ./build/tmp/deploy/images/images-complete
43 cd ..
43 if [ "x$POSTPROCESS" != "x" ]; then 44 if [ "x$POSTPROCESS" != "x" ]; then
44 $POSTPROCESS `pwd` 45 $POSTPROCESS `pwd`
45 fi 46 fi
@@ -60,6 +61,8 @@ fi
60 61
61bitbake $BBTARGET 62bitbake $BBTARGET
62 63
64cd ..
65
63if [ "x$POSTPROCESS" != "x" ]; then 66if [ "x$POSTPROCESS" != "x" ]; then
64 $POSTPROCESS `pwd` 67 $POSTPROCESS `pwd`
65fi 68fi