diff options
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 17a55d3d6e..0f99e5ab8e 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1630,7 +1630,8 @@ class RunQueueExecuteTasks(RunQueueExecute): | |||
1630 | pn = self.rqdata.dataCache.pkg_fn[fn] | 1630 | pn = self.rqdata.dataCache.pkg_fn[fn] |
1631 | taskname = self.rqdata.runq_task[revdep] | 1631 | taskname = self.rqdata.runq_task[revdep] |
1632 | deps = self.rqdata.runq_depends[revdep] | 1632 | deps = self.rqdata.runq_depends[revdep] |
1633 | taskdepdata[revdep] = [pn, taskname, fn, deps] | 1633 | provides = self.rqdata.dataCache.fn_provides[fn] |
1634 | taskdepdata[revdep] = [pn, taskname, fn, deps, provides] | ||
1634 | for revdep2 in deps: | 1635 | for revdep2 in deps: |
1635 | if revdep2 not in taskdepdata: | 1636 | if revdep2 not in taskdepdata: |
1636 | additional.append(revdep2) | 1637 | additional.append(revdep2) |