summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index bb61087359..2bf19b9778 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -2124,7 +2124,7 @@ class RunQueueExecute:
2124 # as most code can't handle them 2124 # as most code can't handle them
2125 def build_taskdepdata(self, task): 2125 def build_taskdepdata(self, task):
2126 taskdepdata = {} 2126 taskdepdata = {}
2127 next = self.rqdata.runtaskentries[task].depends 2127 next = self.rqdata.runtaskentries[task].depends.copy()
2128 next.add(task) 2128 next.add(task)
2129 next = self.filtermcdeps(task, next) 2129 next = self.filtermcdeps(task, next)
2130 while next: 2130 while next: