mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 21:32:12 +02:00
bitbake: runqueue: Fix typo builable -> buildable
(Bitbake rev: 1e59ae8729513e19a801c723b67911491c2a66fe) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -181,7 +181,7 @@ class RunQueueScheduler(object):
|
||||
if self.rq.stats.active < self.rq.number_tasks:
|
||||
return self.next_buildable_task()
|
||||
|
||||
def newbuilable(self, task):
|
||||
def newbuildable(self, task):
|
||||
self.buildable.append(task)
|
||||
|
||||
def describe_task(self, taskid):
|
||||
@@ -1781,7 +1781,7 @@ class RunQueueExecuteTasks(RunQueueExecute):
|
||||
|
||||
def setbuildable(self, task):
|
||||
self.runq_buildable.add(task)
|
||||
self.sched.newbuilable(task)
|
||||
self.sched.newbuildable(task)
|
||||
|
||||
def task_completeoutright(self, task):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user