summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.py
diff options
context:
space:
mode:
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