diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 42b6c48ca9..1a19677892 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1757,6 +1757,10 @@ class RunQueueExecuteScenequeue(RunQueueExecute): | |||
1757 | # Have to zero this to avoid circular dependencies | 1757 | # Have to zero this to avoid circular dependencies |
1758 | sq_revdeps_squash[self.rqdata.runq_setscene.index(taskid)] = set() | 1758 | sq_revdeps_squash[self.rqdata.runq_setscene.index(taskid)] = set() |
1759 | 1759 | ||
1760 | for task in self.sq_harddeps: | ||
1761 | for dep in self.sq_harddeps[task]: | ||
1762 | sq_revdeps_squash[dep].add(task) | ||
1763 | |||
1760 | #for task in xrange(len(sq_revdeps_squash)): | 1764 | #for task in xrange(len(sq_revdeps_squash)): |
1761 | # realtask = self.rqdata.runq_setscene[task] | 1765 | # realtask = self.rqdata.runq_setscene[task] |
1762 | # bb.warn("Task %s: %s_setscene is %s " % (task, self.rqdata.get_user_idstring(realtask) , sq_revdeps_squash[task])) | 1766 | # bb.warn("Task %s: %s_setscene is %s " % (task, self.rqdata.get_user_idstring(realtask) , sq_revdeps_squash[task])) |