summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
authorRobert Bradford <rob@openedhand.com>2008-10-17 09:46:35 +0000
committerRobert Bradford <rob@openedhand.com>2008-10-17 09:46:35 +0000
commit696d4f01d235b7309fd1b88bd12949927f19b5d6 (patch)
tree90c0a158e4c0f41ce8ef68989218df7a73f6d282 /bitbake/bin
parent9294b951744b5fc64dea7f10760bee0b1d8cd6f0 (diff)
downloadpoky-696d4f01d235b7309fd1b88bd12949927f19b5d6.tar.gz
bitbake: Refactor the environment variable handling
Refactor the environment variable handling so that it more closes matches the changes that have been made in bitbake-dev. git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5527 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-xbitbake/bin/bitbake12
1 files changed, 3 insertions, 9 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index dc35152d57..9a9b6d3bc6 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -113,15 +113,9 @@ Default BBFILES are the .bb files in the current directory.""" )
113 113
114 cooker = bb.cooker.BBCooker(configuration) 114 cooker = bb.cooker.BBCooker(configuration)
115 115
116 # Optionally clean up the environment 116 # Clear away any spurious environment variables. But don't wipe the
117 if 'BB_PRESERVE_ENV' not in os.environ: 117 # environment totally.
118 if 'BB_ENV_WHITELIST' in os.environ: 118 bb.utils.clean_environment()
119 good_vars = os.environ['BB_ENV_WHITELIST'].split()
120 else:
121 good_vars = bb.utils.preserved_envvars_list()
122 if 'BB_ENV_EXTRAWHITE' in os.environ:
123 good_vars.extend(os.environ['BB_ENV_EXTRAWHITE'].split())
124 bb.utils.filter_environment(good_vars)
125 119
126 cooker.parseConfiguration() 120 cooker.parseConfiguration()
127 121