1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 00:20:08 +00:00

bitbake-dev: Remove implicit task from generateDepTree/generateDotGraphFiles

Remove the implicit (from configuration.cmd) command/task for these events and
instead use a parameter so that the task is given explicitly.
This commit is contained in:
Rob Bradford
2008-10-24 17:22:20 +01:00
parent 22a326547d
commit 790ed68356
3 changed files with 12 additions and 10 deletions
+1 -1
View File
@@ -202,7 +202,7 @@ def init(server, eventHandler):
if not cmdline or cmdline[0] != "generateDotGraph":
print "This UI is only compatible with the -g option"
return
ret = server.runCommand(["generateDepTreeEvent", cmdline[1]])
ret = server.runCommand(["generateDepTreeEvent", cmdline[1], cmdline[2]])
if ret != True:
print "Couldn't run command! %s" % ret
return