summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/cooker.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 5bb7de9437..8dac7934f7 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -391,8 +391,9 @@ class BBCooker:
391 if CookerFeatures.BASEDATASTORE_TRACKING in self.featureset: 391 if CookerFeatures.BASEDATASTORE_TRACKING in self.featureset:
392 self.disableDataTracking() 392 self.disableDataTracking()
393 393
394 self.data.renameVar("__depends", "__base_depends") 394 for mc in self.databuilder.mcdata.values():
395 self.add_filewatch(self.data.getVar("__base_depends", False), self.configwatcher) 395 mc.renameVar("__depends", "__base_depends")
396 self.add_filewatch(mc.getVar("__base_depends", False), self.configwatcher)
396 397
397 self.baseconfig_valid = True 398 self.baseconfig_valid = True
398 self.parsecache_valid = False 399 self.parsecache_valid = False