From 96ec9f8a60b2c8d480e052039e1b14a57131fd4f Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 18 Aug 2010 17:37:15 +0100 Subject: bitbake/cooker.py: Allow idle handlers to pass through a true value Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'bitbake/lib/bb/runqueue.py') 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: (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): -- cgit v1.2.3