summaryrefslogtreecommitdiffstats
path: root/lib/bb/cooker.py
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2012-08-02 18:52:15 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-02 23:03:05 +0100
commit19efc6081c15a59bb8f5aaf8478650a2732cafe8 (patch)
tree1b944215a986912fbfafa51726dcda8cf08db1dc /lib/bb/cooker.py
parent2054c7d99933c1523d4b5c7f65d37c69b8472e47 (diff)
downloadbitbake-19efc6081c15a59bb8f5aaf8478650a2732cafe8.tar.gz
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. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/cooker.py')
-rw-r--r--lib/bb/cooker.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 5d01af31a..23fffc97b 100644
--- a/lib/bb/cooker.py
+++ b/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()