summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-04-20 14:15:25 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-04-21 21:00:35 +0100
commit6d1d9f3d78f6bc2af00307262d65fc4b94a334d0 (patch)
treedc9abb487bc106f61b7c1e24293395ae3f1811e9
parentd796985f804e69d2716a3d900335a53db29f01dd (diff)
downloadpoky-6d1d9f3d78f6bc2af00307262d65fc4b94a334d0.tar.gz
bitbake: runqueue: Drop pointless variable assignment
This is set at the start of the loop anyway so it does nothing. Drop the pointless code. (Bitbake rev: e6a3173c9cdf349ccbd4cf612868f92cce8717c8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/bb/runqueue.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index a7a84630d7..a4e82f375c 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -2664,7 +2664,6 @@ def build_scenequeue_data(sqdata, rqdata, rq, cooker, stampcache, sqrq):
2664 sq_revdeps_squash[point] = set() 2664 sq_revdeps_squash[point] = set()
2665 if point in rqdata.runq_setscene_tids: 2665 if point in rqdata.runq_setscene_tids:
2666 sq_revdeps_squash[point] = tasks 2666 sq_revdeps_squash[point] = tasks
2667 tasks = set()
2668 continue 2667 continue
2669 for dep in rqdata.runtaskentries[point].depends: 2668 for dep in rqdata.runtaskentries[point].depends:
2670 if point in sq_revdeps[dep]: 2669 if point in sq_revdeps[dep]: