summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r--bitbake/lib/bb/runqueue.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index b34e2d5607..7f95140c49 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -2756,8 +2756,12 @@ class RunQueueExecute:
2756 logger.debug2("%s was unavailable and is a hard dependency of %s so skipping" % (task, dep)) 2756 logger.debug2("%s was unavailable and is a hard dependency of %s so skipping" % (task, dep))
2757 self.sq_task_failoutright(dep) 2757 self.sq_task_failoutright(dep)
2758 continue 2758 continue
2759
2760 # For performance, only compute allcovered once if needed
2761 if self.sqdata.sq_deps[task]:
2762 allcovered = self.scenequeue_covered | self.scenequeue_notcovered
2759 for dep in sorted(self.sqdata.sq_deps[task]): 2763 for dep in sorted(self.sqdata.sq_deps[task]):
2760 if self.sqdata.sq_revdeps[dep].issubset(self.scenequeue_covered | self.scenequeue_notcovered): 2764 if self.sqdata.sq_revdeps[dep].issubset(allcovered):
2761 if dep not in self.sq_buildable: 2765 if dep not in self.sq_buildable:
2762 self.sq_buildable.add(dep) 2766 self.sq_buildable.add(dep)
2763 2767