aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-08-15 13:28:31 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-08-15 13:32:01 +0100
commita5e084a266f63c2fd370122327615e49beaeb94e (patch)
tree72bb1f802601ba5203fd9df3a88309143554f0c1
parent4c5aeb424247a9d0c907524ffacd9c61fcdc0852 (diff)
downloadbitbake-a5e084a266f63c2fd370122327615e49beaeb94e.tar.gz
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. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/runqueue.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 53031740b..4e64ddfda 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -2306,6 +2306,8 @@ class RunQueueExecute:
self.scenequeue_notcovered.remove(tid)
if tid in self.scenequeue_covered:
self.scenequeue_covered.remove(tid)
+ if tid in self.scenequeue_notneeded:
+ self.scenequeue_notneeded.remove(tid)
(mc, fn, taskname, taskfn) = split_tid_mcfn(tid)
self.sqdata.stamps[tid] = bb.build.stampfile(taskname + "_setscene", self.rqdata.dataCaches[mc], taskfn, noextra=True)