]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
bitbake: cooker: fix OVERRIDES in BB_SIGNATURE_HANDLER (to override value from DISTRO...
authorMartin Jansa <martin.jansa@gmail.com>
Thu, 2 Aug 2012 16:52:15 +0000 (18:52 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 2 Aug 2012 22:04:27 +0000 (23:04 +0100)
We really need to pass the finalised data store into the parser init function
(and hence the siggen init function). This ensures any value changes get
passed into the correct code.

(Bitbake rev: 19efc6081c15a59bb8f5aaf8478650a2732cafe8)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bitbake/lib/bb/cooker.py

index 5d01af31acda1aef748b80900c0468c3637d37f2..23fffc97bcfd0162274ba73a411276897ae28c0d 100644 (file)
@@ -158,6 +158,7 @@ class BBCooker:
         #
         self.configuration.event_data = bb.data.createCopy(self.configuration.data)
         bb.data.update_data(self.configuration.event_data)
+        bb.parse.init_parser(self.configuration.event_data)
 
         # TOSTOP must not be set or our children will hang when they output
         fd = sys.stdout.fileno()