summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r--bitbake/lib/bb/runqueue.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 6346c7711a..472509fa10 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -999,6 +999,11 @@ class RunQueue:
999 else: 999 else:
1000 self.state = runQueueSceneInit 1000 self.state = runQueueSceneInit
1001 1001
1002 # we are ready to run, see if any UI client needs the dependency info
1003 if bb.cooker.CookerFeatures.SEND_DEPENDS_TREE in self.cooker.featureset:
1004 depgraph = self.cooker.buildDependTree(self, self.rqdata.taskData)
1005 bb.event.fire(bb.event.DepTreeGenerated(depgraph), self.cooker.data)
1006
1002 if self.state is runQueueSceneInit: 1007 if self.state is runQueueSceneInit:
1003 if self.cooker.configuration.dump_signatures: 1008 if self.cooker.configuration.dump_signatures:
1004 self.dump_signatures() 1009 self.dump_signatures()