diff options
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 6e3a91b850..d7186e8516 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1124,14 +1124,14 @@ class RunQueueData: | |||
1124 | self.init_progress_reporter.next_stage() | 1124 | self.init_progress_reporter.next_stage() |
1125 | 1125 | ||
1126 | # Iterate over the task list looking for tasks with a 'setscene' function | 1126 | # Iterate over the task list looking for tasks with a 'setscene' function |
1127 | self.runq_setscene_tids = [] | 1127 | self.runq_setscene_tids = set() |
1128 | if not self.cooker.configuration.nosetscene: | 1128 | if not self.cooker.configuration.nosetscene: |
1129 | for tid in self.runtaskentries: | 1129 | for tid in self.runtaskentries: |
1130 | (mc, fn, taskname, _) = split_tid_mcfn(tid) | 1130 | (mc, fn, taskname, _) = split_tid_mcfn(tid) |
1131 | setscenetid = tid + "_setscene" | 1131 | setscenetid = tid + "_setscene" |
1132 | if setscenetid not in taskData[mc].taskentries: | 1132 | if setscenetid not in taskData[mc].taskentries: |
1133 | continue | 1133 | continue |
1134 | self.runq_setscene_tids.append(tid) | 1134 | self.runq_setscene_tids.add(tid) |
1135 | 1135 | ||
1136 | self.init_progress_reporter.next_stage() | 1136 | self.init_progress_reporter.next_stage() |
1137 | 1137 | ||