aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/runqueue.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-11 12:19:11 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-11 12:19:11 +0000
commit1e59ae8729513e19a801c723b67911491c2a66fe (patch)
tree0da73c89d023a5bfe4b1b8e2a648584da2365416 /lib/bb/runqueue.py
parentaf7d63b1f76fd3f7fa92ed15ae61ca47d9e13472 (diff)
downloadbitbake-1e59ae8729513e19a801c723b67911491c2a66fe.tar.gz
runqueue: Fix typo builable -> buildable
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/runqueue.py')
-rw-r--r--lib/bb/runqueue.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index ae12c2504..b7be102a8 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -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):
"""