summaryrefslogtreecommitdiffstats
path: root/lib/bb/data.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-05-11 21:49:13 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2009-05-11 21:49:13 +0000
commit43d486cd8bcc95eb60bd1530b462b1c43618da0f (patch)
treed094c6828f0631f912ae95938310419114964d81 /lib/bb/data.py
parent51e7a28a098a194e6cdf10532e6b1ac586669a0f (diff)
downloadbitbake-43d486cd8bcc95eb60bd1530b462b1c43618da0f.tar.gz
data.py: Make sure allowed variables inherited from the environment are exported again (from Poky)
shell.py: When running a stage task in bbshell, run populate_staging, not the stage task (from Poky)
Diffstat (limited to 'lib/bb/data.py')
-rw-r--r--lib/bb/data.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/data.py b/lib/bb/data.py
index 981b0b218..d3058b9a1 100644
--- a/lib/bb/data.py
+++ b/lib/bb/data.py
@@ -329,6 +329,7 @@ def inheritFromOS(d):
for s in os.environ.keys():
try:
setVar(s, os.environ[s], d)
+ setVarFlag(s, "export", True, d)
except TypeError:
pass