diff options
Diffstat (limited to 'bitbake/bin')
| -rwxr-xr-x | bitbake/bin/bitbake | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index e262d0b9b4..dc35152d57 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
| @@ -113,6 +113,16 @@ 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 | ||
| 117 | if 'BB_PRESERVE_ENV' not in os.environ: | ||
| 118 | if 'BB_ENV_WHITELIST' in os.environ: | ||
| 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 | |||
| 116 | cooker.parseConfiguration() | 126 | cooker.parseConfiguration() |
| 117 | 127 | ||
| 118 | if configuration.profile: | 128 | if configuration.profile: |
