[OE-core] [PATCH] bitbake: runqueue: Ensure data is handled correctly
Oleksandr Kravchuk
open.source at oleksandr-kravchuk.com
Thu Aug 15 16:02:10 UTC 2019
From: Richard Purdie <richard.purdie at linuxfoundation.org>
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 at linuxfoundation.org>
---
bitbake/lib/bb/runqueue.py | 2 ++
1 file changed, 2 insertions(+)
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:
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)
--
2.17.1
More information about the Openembedded-core
mailing list