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)
downloadpoky-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 52f8554141..9f714e46ad 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -854,6 +854,8 @@ class RunQueue:
854 (if the abort on failure configuration option isn't set) 854 (if the abort on failure configuration option isn't set)
855 """ 855 """
856 856
857 retval = 0.5
858
857 if self.state is runQueuePrepare: 859 if self.state is runQueuePrepare:
858 self.rqdata.prepare() 860 self.rqdata.prepare()
859 self.state = runQueueRunInit 861 self.state = runQueueRunInit
@@ -885,7 +887,7 @@ class RunQueue:
885 return False 887 return False
886 888
887 # Loop 889 # Loop
888 return True 890 return retval
889 891
890 def execute_runqueue_initVars(self): 892 def execute_runqueue_initVars(self):
891 893