summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib')
-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 80cc60ed7f..c6f45a345f 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -2044,7 +2044,7 @@ class RunQueueExecute:
2044 for dep in self.sqdata.sq_deps[task]: 2044 for dep in self.sqdata.sq_deps[task]:
2045 if fail and task in self.sqdata.sq_harddeps and dep in self.sqdata.sq_harddeps[task]: 2045 if fail and task in self.sqdata.sq_harddeps and dep in self.sqdata.sq_harddeps[task]:
2046 logger.debug(2, "%s was unavailable and is a hard dependency of %s so skipping" % (task, dep)) 2046 logger.debug(2, "%s was unavailable and is a hard dependency of %s so skipping" % (task, dep))
2047 self.scenequeue_updatecounters(dep, fail) 2047 self.sq_task_failoutright(dep)
2048 continue 2048 continue
2049 if task not in self.sqdata.sq_revdeps2[dep]: 2049 if task not in self.sqdata.sq_revdeps2[dep]:
2050 # May already have been removed by the fail case above 2050 # May already have been removed by the fail case above