diff options
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
| -rw-r--r-- | bitbake/lib/bb/runqueue.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 8ce9ad5189..ba9bebebcf 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
| @@ -1886,11 +1886,12 @@ class RunQueueExecuteTasks(RunQueueExecute): | |||
| 1886 | continue | 1886 | continue |
| 1887 | if revdep in self.runq_buildable: | 1887 | if revdep in self.runq_buildable: |
| 1888 | continue | 1888 | continue |
| 1889 | alldeps = 1 | 1889 | alldeps = True |
| 1890 | for dep in self.rqdata.runtaskentries[revdep].depends: | 1890 | for dep in self.rqdata.runtaskentries[revdep].depends: |
| 1891 | if dep not in self.runq_complete: | 1891 | if dep not in self.runq_complete: |
| 1892 | alldeps = 0 | 1892 | alldeps = False |
| 1893 | if alldeps == 1: | 1893 | break |
| 1894 | if alldeps: | ||
| 1894 | self.setbuildable(revdep) | 1895 | self.setbuildable(revdep) |
| 1895 | logger.debug(1, "Marking task %s as buildable", revdep) | 1896 | logger.debug(1, "Marking task %s as buildable", revdep) |
| 1896 | 1897 | ||
