summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-20 16:15:18 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-20 16:47:40 +0000
commitc4a8fab1a42ad9d80541cadab57c8c66f91c04b0 (patch)
treeed56978ce2dd955bcc08aef6303b32acf21851d1 /bitbake
parent8878ee89ba45dfe9b3852e21604c216795152159 (diff)
downloadast2050-yocto-poky-c4a8fab1a42ad9d80541cadab57c8c66f91c04b0.zip
ast2050-yocto-poky-c4a8fab1a42ad9d80541cadab57c8c66f91c04b0.tar.gz
cooker.py: Allow siggen classes to be added by the metadata
By calling init_parser which sets up the siggen code after the ConfigParsed event is fired, we can allow the metadata to add siggen classes which was always what the code intended. (Bitbake rev: 69fd5ad4a8402fab5eb8348260966b337c5648ff) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index cbac1f7..b6bd740 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -856,8 +856,8 @@ class BBCooker:
if data.getVar("BB_WORKERCONTEXT", False) is None:
bb.fetch.fetcher_init(data)
bb.codeparser.parser_cache_init(data)
- bb.parse.init_parser(data)
bb.event.fire(bb.event.ConfigParsed(), data)
+ bb.parse.init_parser(data)
self.configuration.data = data
def handleCollections( self, collections ):
OpenPOWER on IntegriCloud