summaryrefslogtreecommitdiffstats
path: root/scripts/poky-autobuild
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-04-30 13:10:28 +0000
committerRichard Purdie <richard@openedhand.com>2008-04-30 13:10:28 +0000
commit04c650ae4f4d6c0c9341e05c8cf3cfd3faaa6595 (patch)
tree407763b00e89608ba1bc9d11906c6f3b49bf4fd0 /scripts/poky-autobuild
parent7b717d201ad1e1a6710965da8e30de8ada07dfcf (diff)
downloadopenembedded-core-contrib-04c650ae4f4d6c0c9341e05c8cf3cfd3faaa6595.tar.gz
scripts/poky-autobuild: Preserve exit code
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4374 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts/poky-autobuild')
-rwxr-xr-xscripts/poky-autobuild3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/poky-autobuild b/scripts/poky-autobuild
index d283b668d3..cc2d858c6e 100755
--- a/scripts/poky-autobuild
+++ b/scripts/poky-autobuild
@@ -65,8 +65,11 @@ fi
bitbake $@
+retval=$?
+
if [ "x$POSTPROCESS" != "x" ]; then
cd ..
$POSTPROCESS $ABTARGET $TARGETDIR
fi
+exit $?