From 0c0bb02f5104e3856c9d90088e1ece08652cc19f Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 18 Feb 2013 13:18:31 +0000 Subject: [PATCH] bitbake: runqueue.py: Ensure export flag is set for fakeroot environment variables 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. (Bitbake rev: bdf437747b664479acde6deaa9096e2a6bcdf483) 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 e960b4f9da..f1964da906 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")