diff options
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake | 12 |
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 | ||