summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/runqueue.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 63d4edd892..96d70080d3 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1610,7 +1610,6 @@ class RunQueue:
1610 1610
1611 if self.state == RunQueueState.SCENE_INIT: 1611 if self.state == RunQueueState.SCENE_INIT:
1612 self.start_worker(self.rqexe) 1612 self.start_worker(self.rqexe)
1613 self.rqdata.init_progress_reporter.finish()
1614 1613
1615 # If we don't have any setscene functions, skip execution 1614 # If we don't have any setscene functions, skip execution
1616 if not self.rqdata.runq_setscene_tids: 1615 if not self.rqdata.runq_setscene_tids:
@@ -1948,6 +1947,10 @@ class RunQueueExecute:
1948 self.sqdata = SQData() 1947 self.sqdata = SQData()
1949 build_scenequeue_data(self.sqdata, self.rqdata, self) 1948 build_scenequeue_data(self.sqdata, self.rqdata, self)
1950 1949
1950 # Finish the "Initialising tasks" progress bar before
1951 # update_scenequeue_data() creates another one.
1952 self.rqdata.init_progress_reporter.finish()
1953
1951 update_scenequeue_data(self.sqdata.sq_revdeps, self.sqdata, self.rqdata, self.rq, self.cooker, self.stampcache, self, summary=True) 1954 update_scenequeue_data(self.sqdata.sq_revdeps, self.sqdata, self.rqdata, self.rq, self.cooker, self.stampcache, self, summary=True)
1952 1955
1953 # Compute a list of 'stale' sstate tasks where the current hash does not match the one 1956 # Compute a list of 'stale' sstate tasks where the current hash does not match the one