summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/runqueue.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index aca06b57be..675f830712 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1203,8 +1203,13 @@ class RunQueueExecuteTasks(RunQueueExecute):
1203 if task in self.rq.scenequeue_covered: 1203 if task in self.rq.scenequeue_covered:
1204 continue 1204 continue
1205 if len(self.rqdata.runq_revdeps[task]) > 0 and self.rqdata.runq_revdeps[task].issubset(self.rq.scenequeue_covered): 1205 if len(self.rqdata.runq_revdeps[task]) > 0 and self.rqdata.runq_revdeps[task].issubset(self.rq.scenequeue_covered):
1206 self.rq.scenequeue_covered.add(task)
1207 found = True 1206 found = True
1207 for revdep in self.rqdata.runq_revdeps[task]:
1208 if self.rqdata.runq_fnid[task] != self.rqdata.runq_fnid[revdep]:
1209 found = False
1210 break
1211 if found:
1212 self.rq.scenequeue_covered.add(task)
1208 1213
1209 # Detect when the real task needs to be run anyway by looking to see 1214 # Detect when the real task needs to be run anyway by looking to see
1210 # if any of its dependencies within the same package are scheduled 1215 # if any of its dependencies within the same package are scheduled