mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
bitbake: runqueue: Fix data corruption problem
This was overwriting data in the parent which caused all kinds of odd/weird failures. (Bitbake rev: 4c5aeb424247a9d0c907524ffacd9c61fcdc0852) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -1815,6 +1815,9 @@ class RunQueueExecute:
|
|||||||
if not self.rq.depvalidate:
|
if not self.rq.depvalidate:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
# Must not edit parent data
|
||||||
|
taskdeps = set(taskdeps)
|
||||||
|
|
||||||
taskdata = {}
|
taskdata = {}
|
||||||
taskdeps.add(task)
|
taskdeps.add(task)
|
||||||
for dep in taskdeps:
|
for dep in taskdeps:
|
||||||
|
|||||||
Reference in New Issue
Block a user