summaryrefslogtreecommitdiffstats
path: root/bitbake-dev/lib/bb/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake-dev/lib/bb/command.py')
-rw-r--r--bitbake-dev/lib/bb/command.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/bitbake-dev/lib/bb/command.py b/bitbake-dev/lib/bb/command.py
index 5885b375ab..b94756649b 100644
--- a/bitbake-dev/lib/bb/command.py
+++ b/bitbake-dev/lib/bb/command.py
@@ -164,8 +164,9 @@ class CommandsAsync:
164 Generate an event containing the dependency information 164 Generate an event containing the dependency information
165 """ 165 """
166 pkgs_to_build = params[0] 166 pkgs_to_build = params[0]
167 task = params[1]
167 168
168 command.cooker.generateDepTreeEvent(pkgs_to_build) 169 command.cooker.generateDepTreeEvent(pkgs_to_build, task)
169 command.finishAsyncCommand() 170 command.finishAsyncCommand()
170 171
171 def generateDotGraph(self, command, params): 172 def generateDotGraph(self, command, params):
@@ -173,8 +174,9 @@ class CommandsAsync:
173 Dump dependency information to disk as .dot files 174 Dump dependency information to disk as .dot files
174 """ 175 """
175 pkgs_to_build = params[0] 176 pkgs_to_build = params[0]
177 task = params[1]
176 178
177 command.cooker.generateDotGraphFiles(pkgs_to_build) 179 command.cooker.generateDotGraphFiles(pkgs_to_build, task)
178 command.finishAsyncCommand() 180 command.finishAsyncCommand()
179 181
180 def showVersions(self, command, params): 182 def showVersions(self, command, params):