diff options
| author | Rob Bradford <rob@linux.intel.com> | 2008-10-24 17:22:20 +0100 |
|---|---|---|
| committer | Rob Bradford <rob@linux.intel.com> | 2008-10-27 10:19:54 +0000 |
| commit | 790ed683565e56ef513bad568de1b15d801bfe7b (patch) | |
| tree | 04bbd39860cc5d6e8267b8c7f587b1e0f91d4267 /bitbake-dev/lib/bb/ui | |
| parent | 22a326547dfd80b585fa7e4ecedcdb25d54a5a86 (diff) | |
| download | poky-790ed683565e56ef513bad568de1b15d801bfe7b.tar.gz | |
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.
Diffstat (limited to 'bitbake-dev/lib/bb/ui')
| -rw-r--r-- | bitbake-dev/lib/bb/ui/depexplorer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake-dev/lib/bb/ui/depexplorer.py b/bitbake-dev/lib/bb/ui/depexplorer.py index becbb5dd5d..9d92fa0a08 100644 --- a/bitbake-dev/lib/bb/ui/depexplorer.py +++ b/bitbake-dev/lib/bb/ui/depexplorer.py | |||
| @@ -202,7 +202,7 @@ def init(server, eventHandler): | |||
| 202 | if not cmdline or cmdline[0] != "generateDotGraph": | 202 | if not cmdline or cmdline[0] != "generateDotGraph": |
| 203 | print "This UI is only compatible with the -g option" | 203 | print "This UI is only compatible with the -g option" |
| 204 | return | 204 | return |
| 205 | ret = server.runCommand(["generateDepTreeEvent", cmdline[1]]) | 205 | ret = server.runCommand(["generateDepTreeEvent", cmdline[1], cmdline[2]]) |
| 206 | if ret != True: | 206 | if ret != True: |
| 207 | print "Couldn't run command! %s" % ret | 207 | print "Couldn't run command! %s" % ret |
| 208 | return | 208 | return |
