mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00:00
bitbake: runqueue: Stop on first unsatisfied dependency
(Bitbake rev: 9876b5da1c65bf09a790542cb4057f2d93868cf7) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
53d1027625
commit
9b034e9a83
@@ -1886,11 +1886,12 @@ class RunQueueExecuteTasks(RunQueueExecute):
|
||||
continue
|
||||
if revdep in self.runq_buildable:
|
||||
continue
|
||||
alldeps = 1
|
||||
alldeps = True
|
||||
for dep in self.rqdata.runtaskentries[revdep].depends:
|
||||
if dep not in self.runq_complete:
|
||||
alldeps = 0
|
||||
if alldeps == 1:
|
||||
alldeps = False
|
||||
break
|
||||
if alldeps:
|
||||
self.setbuildable(revdep)
|
||||
logger.debug(1, "Marking task %s as buildable", revdep)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user