diff options
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 4877c4b644..07897be279 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -1623,7 +1623,8 @@ class BBCooker: | |||
1623 | if self.state != state.parsing and not self.parsecache_valid: | 1623 | if self.state != state.parsing and not self.parsecache_valid: |
1624 | self.parseConfiguration () | 1624 | self.parseConfiguration () |
1625 | if CookerFeatures.SEND_SANITYEVENTS in self.featureset: | 1625 | if CookerFeatures.SEND_SANITYEVENTS in self.featureset: |
1626 | bb.event.fire(bb.event.SanityCheck(False), self.data) | 1626 | for mc in self.multiconfigs: |
1627 | bb.event.fire(bb.event.SanityCheck(False), self.databuilder.mcdata[mc]) | ||
1627 | 1628 | ||
1628 | for mc in self.multiconfigs: | 1629 | for mc in self.multiconfigs: |
1629 | ignore = self.databuilder.mcdata[mc].getVar("ASSUME_PROVIDED", True) or "" | 1630 | ignore = self.databuilder.mcdata[mc].getVar("ASSUME_PROVIDED", True) or "" |