diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-08-15 13:28:31 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-08-15 13:32:06 +0100 |
commit | 5f0d31ce4653f7a76a5226fa379a285ceca19d63 (patch) | |
tree | 7fc54d493940ecbf77584383ee23d5ff5f3a8bdf /bitbake/lib | |
parent | 2fa5d98f52ca34e963f7de7ff77224c5ed1e4c11 (diff) | |
download | poky-5f0d31ce4653f7a76a5226fa379a285ceca19d63.tar.gz |
bitbake: runqueue: Ensure data is handled correctly
This doesn't appear to have ill effects right now but there is a correctness
issue which this so fix it.
(Bitbake rev: a5e084a266f63c2fd370122327615e49beaeb94e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 53031740bd..4e64ddfdad 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -2306,6 +2306,8 @@ class RunQueueExecute: | |||
2306 | self.scenequeue_notcovered.remove(tid) | 2306 | self.scenequeue_notcovered.remove(tid) |
2307 | if tid in self.scenequeue_covered: | 2307 | if tid in self.scenequeue_covered: |
2308 | self.scenequeue_covered.remove(tid) | 2308 | self.scenequeue_covered.remove(tid) |
2309 | if tid in self.scenequeue_notneeded: | ||
2310 | self.scenequeue_notneeded.remove(tid) | ||
2309 | 2311 | ||
2310 | (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) | 2312 | (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) |
2311 | self.sqdata.stamps[tid] = bb.build.stampfile(taskname + "_setscene", self.rqdata.dataCaches[mc], taskfn, noextra=True) | 2313 | self.sqdata.stamps[tid] = bb.build.stampfile(taskname + "_setscene", self.rqdata.dataCaches[mc], taskfn, noextra=True) |