* [PATCH] runqueue.py: Ensure export flag is set for fakeroot environment variables
@ 2013-02-18 13:18 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2013-02-18 13:18 UTC (permalink / raw)
To: bitbake-devel
This means the variables show up in the shell execution "run" files since
its useful to know what the fakeroot environment is and how to set it up
manually.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
bitbake/lib/bb/runqueue.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 1bbe791..58a3ce7 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1139,6 +1139,7 @@ class RunQueueExecute:
for e in fakeenv:
os.environ[e] = fakeenv[e]
the_data.setVar(e, fakeenv[e])
+ the_data.setVarFlag(e, 'export', "1")
if quieterrors:
the_data.setVarFlag(taskname, "quieterrors", "1")
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2013-02-18 23:08 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-18 13:18 [PATCH] runqueue.py: Ensure export flag is set for fakeroot environment variables Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox