[oe-commits] [bitbake] 01/06: runqueue: Fix typo builable -> buildable

git at git.openembedded.org git at git.openembedded.org
Sat Nov 11 12:21:07 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository bitbake.

commit 1e59ae8729513e19a801c723b67911491c2a66fe
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Sat Nov 11 12:19:11 2017 +0000

    runqueue: Fix typo builable -> buildable
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index ae12c25..b7be102 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):
         """

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list