diff options
author | Peter Kjellerstedt <pkj@axis.com> | 2016-03-17 10:56:28 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-20 22:57:59 +0000 |
commit | 40764c7039f1ee161916d4fbf7dfe15fb964030e (patch) | |
tree | d7be9bfceffca2ed227f804d8bad164cf50aa6a0 /oe-init-build-env-memres | |
parent | 1295d413f27941d0763a3d58982378738bf3ca06 (diff) | |
download | openembedded-core-contrib-40764c7039f1ee161916d4fbf7dfe15fb964030e.tar.gz |
oe-init-build-env*: Make them actually return failures
If either of the internal scripts (oe-buildenv-internal and
oe-setup-builddir) failed, oe-init-build-env (and
oe-init-build-env-memres) would still return success.
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'oe-init-build-env-memres')
-rwxr-xr-x | oe-init-build-env-memres | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/oe-init-build-env-memres b/oe-init-build-env-memres index 9d393f58127..9e1425ea83f 100755 --- a/oe-init-build-env-memres +++ b/oe-init-build-env-memres @@ -56,11 +56,15 @@ fi unset THIS_SCRIPT export OEROOT -. $OEROOT/scripts/oe-buildenv-internal && \ - TEMPLATECONF="$TEMPLATECONF" $OEROOT/scripts/oe-setup-builddir && \ - [ -n "$BUILDDIR" ] && cd "$BUILDDIR" +. $OEROOT/scripts/oe-buildenv-internal && + TEMPLATECONF="$TEMPLATECONF" $OEROOT/scripts/oe-setup-builddir || { + unset OEROOT + return 1 +} unset OEROOT +[ -z "$BUILDDIR" ] || cd "$BUILDDIR" + res=1 if [ -e bitbake.lock ] && grep : bitbake.lock > /dev/null; then BBSERVER=$(cat bitbake.lock) bitbake --status-only |