summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-08-18 17:37:15 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-19 11:41:44 +0100
commit96ec9f8a60b2c8d480e052039e1b14a57131fd4f (patch)
treef7191e17ecd5fc5d8e755fd0b51647247cac1120 /bitbake/lib/bb/runqueue.py
parent1db9ee5e8d472898b32e7c060d8bf276016bcee9 (diff)
downloadast2050-yocto-poky-96ec9f8a60b2c8d480e052039e1b14a57131fd4f.zip
ast2050-yocto-poky-96ec9f8a60b2c8d480e052039e1b14a57131fd4f.tar.gz
bitbake/cooker.py: Allow idle handlers to pass through a true value
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r--bitbake/lib/bb/runqueue.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 52f8554..9f714e4 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -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):
OpenPOWER on IntegriCloud