diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-05-09 15:23:28 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-05-09 15:28:17 +0100 |
commit | 44a88198c129eff0aabd3fb20b999b4bef4aadde (patch) | |
tree | 5ce7eacfd9e845e10adc4a091a03ce3a7b771f61 /bitbake/lib/bb/data.py | |
parent | 6a6f5cc8206f35dba044f59ae59ed878c2f8fb94 (diff) | |
download | poky-44a88198c129eff0aabd3fb20b999b4bef4aadde.tar.gz |
bitbake: Make sure existing environment variables are properly exported
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/data.py')
-rw-r--r-- | bitbake/lib/bb/data.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py index 19e67dbc37..cc08d69009 100644 --- a/bitbake/lib/bb/data.py +++ b/bitbake/lib/bb/data.py | |||
@@ -329,6 +329,7 @@ def inheritFromOS(d): | |||
329 | for s in os.environ.keys(): | 329 | for s in os.environ.keys(): |
330 | try: | 330 | try: |
331 | setVar(s, os.environ[s], d) | 331 | setVar(s, os.environ[s], d) |
332 | setVarFlag(s, "export", True, d) | ||
332 | except TypeError: | 333 | except TypeError: |
333 | pass | 334 | pass |
334 | 335 | ||