aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/utils.py
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2016-07-18 19:07:17 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-07-20 10:23:29 +0100
commit15c4ea679f4fe097a9f21cccfc82907b5f39a4e4 (patch)
tree03cba4af7f573410829c4a77212a66454442811e /lib/bb/utils.py
parent1a18f5ceb478f766b53850451549333f655621ea (diff)
downloadbitbake-15c4ea679f4fe097a9f21cccfc82907b5f39a4e4.tar.gz
bitbake: utils: add BBSERVER to the list of preserved variables
All environment variables that are not in the list returned by preserved_envvars_exported are cleaned by bb.utils.clean_environment. Added BBSERVER to the list as we need to access it in bb/main.py after the call of bb.utils.clean_environment. Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/utils.py')
-rw-r--r--lib/bb/utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/utils.py b/lib/bb/utils.py
index aad26a0f1..995089a38 100644
--- a/lib/bb/utils.py
+++ b/lib/bb/utils.py
@@ -575,6 +575,7 @@ def preserved_envvars_exported():
'TERM',
'USER',
'LC_ALL',
+ 'BBSERVER',
]
def preserved_envvars():