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.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 8fadc8338e..80f3d3282f 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -3034,14 +3034,13 @@ def build_scenequeue_data(sqdata, rqdata, sqrq):
3034 rqdata.init_progress_reporter.next_stage(len(rqdata.runtaskentries)) 3034 rqdata.init_progress_reporter.next_stage(len(rqdata.runtaskentries))
3035 3035
3036 # Sanity check all dependencies could be changed to setscene task references 3036 # Sanity check all dependencies could be changed to setscene task references
3037 for taskcounter, tid in enumerate(rqdata.runtaskentries): 3037 for tid in rqdata.runtaskentries:
3038 if tid in rqdata.runq_setscene_tids: 3038 if tid in rqdata.runq_setscene_tids:
3039 pass 3039 pass
3040 elif sq_revdeps_squash[tid]: 3040 elif sq_revdeps_squash[tid]:
3041 bb.msg.fatal("RunQueue", "Something went badly wrong during scenequeue generation, halting. Please report this problem.") 3041 bb.msg.fatal("RunQueue", "Something went badly wrong during scenequeue generation, halting. Please report this problem.")
3042 else: 3042 else:
3043 del sq_revdeps_squash[tid] 3043 del sq_revdeps_squash[tid]
3044 rqdata.init_progress_reporter.update(taskcounter)
3045 3044
3046 rqdata.init_progress_reporter.next_stage() 3045 rqdata.init_progress_reporter.next_stage()
3047 3046