From 20dbf0024385eaef61a04d8773fd7640e3c8cc6d Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 9 Sep 2011 19:07:40 +0100 Subject: runqueue.py: Ensure fakeroot variables are reflected in the datastore Without this, variables can be set to one thing in one part of the environment and something different in another part. This change ensures the datastore and the environment are consistent. (Bitbake rev: 459addf13721a6847406f215650fa1882fb83ea9) Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 1 + 1 file changed, 1 insertion(+) (limited to 'bitbake/lib') diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index e2255e7..aca06b5 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -1146,6 +1146,7 @@ class RunQueueExecute: os.environ[e] = v for e in fakeenv: os.environ[e] = fakeenv[e] + the_data.setVar(e, fakeenv[e]) if quieterrors: the_data.setVarFlag(taskname, "quieterrors", "1") -- cgit v1.1