summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-10 08:05:37 -1000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-12 13:41:42 +0100
commit455c7b43936b38c4eca7c777f4eb92b5a6e49313 (patch)
treedbab1a06d107be3f1731f5ec997e487bbc786a63 /bitbake
parent2de11757c4e6ddefbff682c17f8e631a994ac5fc (diff)
downloadpoky-455c7b43936b38c4eca7c777f4eb92b5a6e49313.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: dcf78788daa177bf5c438f33b3c9f7ced7aea8ab) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit e6a3173c9cdf349ccbd4cf612868f92cce8717c8) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-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]: