summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2016-09-15 14:20:49 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-09-16 15:19:33 +0100
commitec1c951a4ee0c33acdde29e578f79ad719a34aca (patch)
tree9d765bc7d3fc1da47af8933510ac822f1a970b43
parent3c762873bb8dc8a3cf89b26579a38d58f6731e04 (diff)
downloadbitbake-contrib-ec1c951a4ee0c33acdde29e578f79ad719a34aca.tar.gz
cookerdata: fire ConfigParsed event after re-parse
[YOCTO #10188] Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/cookerdata.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/cookerdata.py b/lib/bb/cookerdata.py
index bf9bfbf93..07425ce00 100644
--- a/lib/bb/cookerdata.py
+++ b/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()