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.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 31ce89abbe..74a97d6740 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -2376,10 +2376,7 @@ def build_scenequeue_data(sqdata, rqdata, rq, cooker, stampcache, sqrq):
2376 # Sanity check all dependencies could be changed to setscene task references 2376 # Sanity check all dependencies could be changed to setscene task references
2377 for taskcounter, tid in enumerate(rqdata.runtaskentries): 2377 for taskcounter, tid in enumerate(rqdata.runtaskentries):
2378 if tid in rqdata.runq_setscene_tids: 2378 if tid in rqdata.runq_setscene_tids:
2379 deps = set() 2379 sq_revdeps_squash[tid] = set(sq_revdeps_new[tid])
2380 for dep in sq_revdeps_new[tid]:
2381 deps.add(dep)
2382 sq_revdeps_squash[tid] = deps
2383 elif len(sq_revdeps_new[tid]) != 0: 2380 elif len(sq_revdeps_new[tid]) != 0:
2384 bb.msg.fatal("RunQueue", "Something went badly wrong during scenequeue generation, aborting. Please report this problem.") 2381 bb.msg.fatal("RunQueue", "Something went badly wrong during scenequeue generation, aborting. Please report this problem.")
2385 rqdata.init_progress_reporter.update(taskcounter) 2382 rqdata.init_progress_reporter.update(taskcounter)