diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2016-09-15 14:20:49 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-16 15:24:03 +0100 |
commit | e3e239ba5448c9a5f809a6fda1319f90124c0dce (patch) | |
tree | c5c6f3151d7b244097a592c90f6c2543d206f4ae /bitbake | |
parent | 359feedfd5b364d4e0695f1b080fabed939bf910 (diff) | |
download | poky-e3e239ba5448c9a5f809a6fda1319f90124c0dce.tar.gz |
bitbake: cookerdata: fire ConfigParsed event after re-parse
[YOCTO #10188]
(Bitbake rev: ec1c951a4ee0c33acdde29e578f79ad719a34aca)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/cookerdata.py | 1 |
1 files changed, 1 insertions, 0 deletions
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): | |||
273 | if self.data.getVar("BB_INVALIDCONF", False) is True: | 273 | if self.data.getVar("BB_INVALIDCONF", False) is True: |
274 | self.data.setVar("BB_INVALIDCONF", False) | 274 | self.data.setVar("BB_INVALIDCONF", False) |
275 | self.data = self.parseConfigurationFiles(self.prefiles, self.postfiles) | 275 | self.data = self.parseConfigurationFiles(self.prefiles, self.postfiles) |
276 | bb.event.fire(bb.event.ConfigParsed(), self.data) | ||
276 | 277 | ||
277 | bb.parse.init_parser(self.data) | 278 | bb.parse.init_parser(self.data) |
278 | self.data_hash = self.data.get_hash() | 279 | self.data_hash = self.data.get_hash() |