diff options
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index aa939d0443..3a593b6c4b 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1148,6 +1148,7 @@ class RunQueue: | |||
1148 | if self.state is runQueueSceneInit: | 1148 | if self.state is runQueueSceneInit: |
1149 | dump = self.cooker.configuration.dump_signatures | 1149 | dump = self.cooker.configuration.dump_signatures |
1150 | if dump: | 1150 | if dump: |
1151 | self.rqdata.init_progress_reporter.finish() | ||
1151 | if 'printdiff' in dump: | 1152 | if 'printdiff' in dump: |
1152 | invalidtasks = self.print_diffscenetasks() | 1153 | invalidtasks = self.print_diffscenetasks() |
1153 | self.dump_signatures(dump) | 1154 | self.dump_signatures(dump) |
@@ -1967,6 +1968,8 @@ class RunQueueExecuteScenequeue(RunQueueExecute): | |||
1967 | if len(self.sq_revdeps[tid]) == 0: | 1968 | if len(self.sq_revdeps[tid]) == 0: |
1968 | self.runq_buildable.add(tid) | 1969 | self.runq_buildable.add(tid) |
1969 | 1970 | ||
1971 | self.rqdata.init_progress_reporter.finish() | ||
1972 | |||
1970 | self.outrightfail = [] | 1973 | self.outrightfail = [] |
1971 | if self.rq.hashvalidate: | 1974 | if self.rq.hashvalidate: |
1972 | sq_hash = [] | 1975 | sq_hash = [] |
@@ -2018,8 +2021,6 @@ class RunQueueExecuteScenequeue(RunQueueExecute): | |||
2018 | logger.debug(2, 'No package found, so skipping setscene task %s', tid) | 2021 | logger.debug(2, 'No package found, so skipping setscene task %s', tid) |
2019 | self.outrightfail.append(tid) | 2022 | self.outrightfail.append(tid) |
2020 | 2023 | ||
2021 | self.rqdata.init_progress_reporter.finish() | ||
2022 | |||
2023 | logger.info('Executing SetScene Tasks') | 2024 | logger.info('Executing SetScene Tasks') |
2024 | 2025 | ||
2025 | self.rq.state = runQueueSceneRun | 2026 | self.rq.state = runQueueSceneRun |