diff options
author | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-04-28 19:09:19 +0200 |
---|---|---|
committer | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-04-28 19:09:19 +0200 |
commit | 7e1ebd1b2588503d8e2216cee5e7db7d0c70df83 (patch) | |
tree | d9e485c3b8b37d4f6b2a9fa6774438bd278e1d5a /scripts/envsetup.sh | |
parent | ddf0d5d0e83b34a38debf0b160b912fe337308e6 (diff) |
scripts: fix regression on reuse of shell environment variables
instead of editing local.conf to defines DL_DIR and SSTATE_DIR,
the shell environment variables can be propagated in poky/oe build env.
BB_ENV_EXTRAWHITE is defined in "poky/scripts/oe-buildenv-internal"
Thus, variable append step should occurs _after_ setup poky/oe.
Change-Id: I5d4901435812d2d82950588a89b8ec67f2b01ea8
Signed-off-by: Yannick Gicquel <yannick.gicquel@iot.bzh>
Diffstat (limited to 'scripts/envsetup.sh')
-rw-r--r-- | scripts/envsetup.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/envsetup.sh b/scripts/envsetup.sh index b30e0a66b..6ca10de4d 100644 --- a/scripts/envsetup.sh +++ b/scripts/envsetup.sh @@ -77,6 +77,11 @@ else BUILD_DIR=build fi +echo "envsetup: Setup build environment for poky/oe." +echo -e + +source poky/oe-init-build-env $BUILD_DIR + if [ -n "$DL_DIR" ]; then BB_ENV_EXTRAWHITE="$BB_ENV_EXTRAWHITE DL_DIR" fi @@ -87,9 +92,4 @@ fi export BB_ENV_EXTRAWHITE -echo "envsetup: Setup build environment for poky/oe." -echo -e - -source poky/oe-init-build-env $BUILD_DIR - unset TEMPLATECONF |