From e3e239ba5448c9a5f809a6fda1319f90124c0dce Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Thu, 15 Sep 2016 14:20:49 +0300 Subject: [PATCH] bitbake: cookerdata: fire ConfigParsed event after re-parse [YOCTO #10188] (Bitbake rev: ec1c951a4ee0c33acdde29e578f79ad719a34aca) Signed-off-by: Markus Lehtonen Signed-off-by: Richard Purdie --- bitbake/lib/bb/cookerdata.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py index bf9bfbf931..07425ce00d 100644 --- a/bitbake/lib/bb/cookerdata.py +++ b/bitbake/lib/bb/cookerdata.py @@ -273,6 +273,7 @@ class CookerDataBuilder(object): if self.data.getVar("BB_INVALIDCONF", False) is True: self.data.setVar("BB_INVALIDCONF", False) self.data = self.parseConfigurationFiles(self.prefiles, self.postfiles) + bb.event.fire(bb.event.ConfigParsed(), self.data) bb.parse.init_parser(self.data) self.data_hash = self.data.get_hash()