diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-16 13:36:37 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-21 23:37:26 +0000 |
commit | 492214104a55ec56cc483c9b045038e355c6af7b (patch) | |
tree | 028260f5801c3638f8dc474e3a3d2933bf6a8866 /scripts/oe-check-sstate | |
parent | 364319817a7371f0efc143269ba3ff238d1631d9 (diff) | |
download | poky-492214104a55ec56cc483c9b045038e355c6af7b.tar.gz |
meta/scripts: Change BB_ENV_EXTRA_WHITE -> BB_ENV_PASSTHROUGH_ADDITIONS
After the change to bitbake, update the references in OE-Core to match the updates.
(From OE-Core rev: 193affb9f28b0116c3fd619834f145326fee08c5)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-check-sstate')
-rwxr-xr-x | scripts/oe-check-sstate | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-check-sstate b/scripts/oe-check-sstate index 59bcb32a8c..f4cc5869de 100755 --- a/scripts/oe-check-sstate +++ b/scripts/oe-check-sstate | |||
@@ -47,7 +47,7 @@ def check(args): | |||
47 | try: | 47 | try: |
48 | env = os.environ.copy() | 48 | env = os.environ.copy() |
49 | if not args.same_tmpdir: | 49 | if not args.same_tmpdir: |
50 | env['BB_ENV_EXTRAWHITE'] = env.get('BB_ENV_EXTRAWHITE', '') + ' TMPDIR:forcevariable' | 50 | env['BB_ENV_PASSTHROUGH_ADDITIONS'] = env.get('BB_ENV_PASSTHROUGH_ADDITIONS', '') + ' TMPDIR:forcevariable' |
51 | env['TMPDIR:forcevariable'] = tmpdir | 51 | env['TMPDIR:forcevariable'] = tmpdir |
52 | 52 | ||
53 | try: | 53 | try: |