]> code.ossystems Code Review - openembedded-core.git/commitdiff
scripts/poky-autobuild: Preserve exit code
authorRichard Purdie <richard@openedhand.com>
Wed, 30 Apr 2008 13:10:28 +0000 (13:10 +0000)
committerRichard Purdie <richard@openedhand.com>
Wed, 30 Apr 2008 13:10:28 +0000 (13:10 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4374 311d38ba-8fff-0310-9ca6-ca027cbcb966

scripts/poky-autobuild

index d283b668d3d7f1a597cb7c47873f8abe67032efb..cc2d858c6e5d43f7509d619b279eea8cc3018a7f 100755 (executable)
@@ -65,8 +65,11 @@ fi
 
 bitbake $@
 
+retval=$?
+
 if [ "x$POSTPROCESS" != "x" ]; then
     cd ..
     $POSTPROCESS $ABTARGET $TARGETDIR
 fi
 
+exit $?