1
0
mirror of https://git.yoctoproject.org/poky synced 2026-07-16 03:47:03 +00:00

bitbake/cooker.py: Allow idle handlers to pass through a true value

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie
2010-08-18 17:37:15 +01:00
parent 1db9ee5e8d
commit 96ec9f8a60
2 changed files with 7 additions and 2 deletions
+3 -1
View File
@@ -854,6 +854,8 @@ class RunQueue:
(if the abort on failure configuration option isn't set)
"""
retval = 0.5
if self.state is runQueuePrepare:
self.rqdata.prepare()
self.state = runQueueRunInit
@@ -885,7 +887,7 @@ class RunQueue:
return False
# Loop
return True
return retval
def execute_runqueue_initVars(self):