From cecf2b48be24298bd85bfa21f8e1644e8a41727a Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Thu, 2 Aug 2012 18:52:15 +0200 Subject: bitbake: cooker: fix OVERRIDES in BB_SIGNATURE_HANDLER (to override value from DISTRO.conf from local.conf) 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 Signed-off-by: Richard Purdie --- bitbake/lib/bb/cooker.py | 1 + 1 file changed, 1 insertion(+) (limited to 'bitbake') diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 5d01af31ac..23fffc97bc 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -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() -- cgit v1.2.3-54-g00ecf