diff options
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index aaaafc594f..5ab7e97088 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1126,10 +1126,10 @@ class RunQueue: | |||
1126 | else: | 1126 | else: |
1127 | self.state = runQueueSceneInit | 1127 | self.state = runQueueSceneInit |
1128 | 1128 | ||
1129 | # we are ready to run, see if any UI client needs the dependency info | 1129 | # we are ready to run, emit dependency info to any UI or class which |
1130 | if bb.cooker.CookerFeatures.SEND_DEPENDS_TREE in self.cooker.featureset: | 1130 | # needs it |
1131 | depgraph = self.cooker.buildDependTree(self, self.rqdata.taskData) | 1131 | depgraph = self.cooker.buildDependTree(self, self.rqdata.taskData) |
1132 | bb.event.fire(bb.event.DepTreeGenerated(depgraph), self.cooker.data) | 1132 | bb.event.fire(bb.event.DepTreeGenerated(depgraph), self.cooker.data) |
1133 | 1133 | ||
1134 | if self.state is runQueueSceneInit: | 1134 | if self.state is runQueueSceneInit: |
1135 | dump = self.cooker.configuration.dump_signatures | 1135 | dump = self.cooker.configuration.dump_signatures |