From patchwork Mon Feb 18 13:18:31 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel] runqueue.py: Ensure export flag is set for fakeroot environment variables Date: Mon, 18 Feb 2013 13:18:31 -0000 From: Richard Purdie X-Patchwork-Id: 44807 Message-Id: <1361193511.5927.8.camel@ted> 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 --- 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")