diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-11 12:19:11 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-21 13:06:45 +0000 |
commit | b77321ab244b374a1dc8e1ac020d7565c11b8eae (patch) | |
tree | 2be225e50d8fe0bdbab186b37afac777a15e4f22 /bitbake/lib | |
parent | f811a37401e62a7694903020d4d715b8b62a3b5d (diff) | |
download | poky-b77321ab244b374a1dc8e1ac020d7565c11b8eae.tar.gz |
bitbake: runqueue: Fix typo builable -> buildable
(Bitbake rev: 1e59ae8729513e19a801c723b67911491c2a66fe)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index ae12c25049..b7be102a8a 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -181,7 +181,7 @@ class RunQueueScheduler(object): | |||
181 | if self.rq.stats.active < self.rq.number_tasks: | 181 | if self.rq.stats.active < self.rq.number_tasks: |
182 | return self.next_buildable_task() | 182 | return self.next_buildable_task() |
183 | 183 | ||
184 | def newbuilable(self, task): | 184 | def newbuildable(self, task): |
185 | self.buildable.append(task) | 185 | self.buildable.append(task) |
186 | 186 | ||
187 | def describe_task(self, taskid): | 187 | def describe_task(self, taskid): |
@@ -1781,7 +1781,7 @@ class RunQueueExecuteTasks(RunQueueExecute): | |||
1781 | 1781 | ||
1782 | def setbuildable(self, task): | 1782 | def setbuildable(self, task): |
1783 | self.runq_buildable.add(task) | 1783 | self.runq_buildable.add(task) |
1784 | self.sched.newbuilable(task) | 1784 | self.sched.newbuildable(task) |
1785 | 1785 | ||
1786 | def task_completeoutright(self, task): | 1786 | def task_completeoutright(self, task): |
1787 | """ | 1787 | """ |