summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/cooker.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 754303813b..fc017dd19f 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -479,6 +479,10 @@ class BBCooker:
479 logger.debug(1, "Updating environment variable %s from %s to %s" % (k, self.configuration.env[k], environment[k])) 479 logger.debug(1, "Updating environment variable %s from %s to %s" % (k, self.configuration.env[k], environment[k]))
480 self.configuration.env[k] = environment[k] 480 self.configuration.env[k] = environment[k]
481 clean = False 481 clean = False
482
483 # Now update all the variables not in the datastore to match
484 self.configuration.env = environment
485
482 if not clean: 486 if not clean:
483 logger.debug(1, "Base environment change, triggering reparse") 487 logger.debug(1, "Base environment change, triggering reparse")
484 self.reset() 488 self.reset()