diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2012-08-02 18:52:15 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-02 23:04:27 +0100 |
commit | cecf2b48be24298bd85bfa21f8e1644e8a41727a (patch) | |
tree | 502c7501b2315b5f35e1f0ed0984600cc2b37947 /bitbake/lib | |
parent | 6ffb679c07297f63b069e7419efc2723efdee687 (diff) | |
download | poky-cecf2b48be24298bd85bfa21f8e1644e8a41727a.tar.gz |
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 <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 1 |
1 files changed, 1 insertions, 0 deletions
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: | |||
158 | # | 158 | # |
159 | self.configuration.event_data = bb.data.createCopy(self.configuration.data) | 159 | self.configuration.event_data = bb.data.createCopy(self.configuration.data) |
160 | bb.data.update_data(self.configuration.event_data) | 160 | bb.data.update_data(self.configuration.event_data) |
161 | bb.parse.init_parser(self.configuration.event_data) | ||
161 | 162 | ||
162 | # TOSTOP must not be set or our children will hang when they output | 163 | # TOSTOP must not be set or our children will hang when they output |
163 | fd = sys.stdout.fileno() | 164 | fd = sys.stdout.fileno() |