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)
downloadpoky-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 cbac1f73e0..b6bd7400fe 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -856,8 +856,8 @@ class BBCooker:
856 if data.getVar("BB_WORKERCONTEXT", False) is None: 856 if data.getVar("BB_WORKERCONTEXT", False) is None:
857 bb.fetch.fetcher_init(data) 857 bb.fetch.fetcher_init(data)
858 bb.codeparser.parser_cache_init(data) 858 bb.codeparser.parser_cache_init(data)
859 bb.parse.init_parser(data)
860 bb.event.fire(bb.event.ConfigParsed(), data) 859 bb.event.fire(bb.event.ConfigParsed(), data)
860 bb.parse.init_parser(data)
861 self.configuration.data = data 861 self.configuration.data = data
862 862
863 def handleCollections( self, collections ): 863 def handleCollections( self, collections ):