diff options
author | Chris Larson <chris_larson@mentor.com> | 2011-02-07 10:58:40 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-10 22:34:24 +0000 |
commit | afdbb026937d4e2ca3e2b824a035fba8f80264c8 (patch) | |
tree | fcb010c13e182d57e4b524416f8a5d0280386405 /bitbake/bin/bitbake-layers | |
parent | 882ac1afea1d6317022db8eae466a19f49f714c1 (diff) | |
download | poky-afdbb026937d4e2ca3e2b824a035fba8f80264c8.tar.gz |
bitbake-layers: fix bug with env vars leaking in
I forgot that bin/bitbake is what does the environment filtering based upon
BB_ENV_WHITELIST, etc.
(Bitbake rev: 2cc6b6951bd17832866ec710029d119d2df31ba4)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin/bitbake-layers')
-rw-r--r-- | bitbake/bin/bitbake-layers | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/bin/bitbake-layers b/bitbake/bin/bitbake-layers index 08a846be81..ed11e5a386 100644 --- a/bitbake/bin/bitbake-layers +++ b/bitbake/bin/bitbake-layers | |||
@@ -21,6 +21,7 @@ default_cmd = 'show_appends' | |||
21 | 21 | ||
22 | def main(args): | 22 | def main(args): |
23 | logging.basicConfig(format='%(levelname)s: %(message)s') | 23 | logging.basicConfig(format='%(levelname)s: %(message)s') |
24 | bb.utils.clean_environment() | ||
24 | 25 | ||
25 | cmds = Commands() | 26 | cmds = Commands() |
26 | if args: | 27 | if args: |