diff options
-rwxr-xr-x | scripts/poky-autobuild | 3 |
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` if [ "xcomplete" = "x$BBTARGET" ]; then touch ./build/tmp/deploy/images/images-complete chmod a+w ./build/tmp/deploy/images/images-complete + cd .. if [ "x$POSTPROCESS" != "x" ]; then $POSTPROCESS `pwd` fi @@ -60,6 +61,8 @@ fi bitbake $BBTARGET +cd .. + if [ "x$POSTPROCESS" != "x" ]; then $POSTPROCESS `pwd` fi |