bitbake: 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.

(Bitbake rev: 15c4ea679f4fe097a9f21cccfc82907b5f39a4e4)

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ed Bartosh 2016-07-18 19:07:17 +03:00 committed by Richard Purdie
parent 6597ba6b43
commit b190c08b48
1 changed files with 1 additions and 0 deletions

View File

@ -575,6 +575,7 @@ def preserved_envvars_exported():
'TERM',
'USER',
'LC_ALL',
'BBSERVER',
]
def preserved_envvars():