summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-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 e45755206e..58c223c1ca 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1703,8 +1703,9 @@ class BBCooker:
1703 self.finishcommand() 1703 self.finishcommand()
1704 self.extraconfigdata = {} 1704 self.extraconfigdata = {}
1705 self.command.reset() 1705 self.command.reset()
1706 self.databuilder.reset() 1706 if hasattr(self, "data"):
1707 self.data = self.databuilder.data 1707 self.databuilder.reset()
1708 self.data = self.databuilder.data
1708 self.parsecache_valid = False 1709 self.parsecache_valid = False
1709 self.baseconfig_valid = False 1710 self.baseconfig_valid = False
1710 1711