diff options
author | Gary Thomas <gary@mlbassoc.com> | 2013-11-07 10:04:21 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-08 17:25:37 +0000 |
commit | 34eb0044356a04cc816808a57804242ea58d59c2 (patch) | |
tree | e209a47c8a56425461de42c858177b6d297749c5 /bitbake/lib/bb/ui | |
parent | 437e91647adb23edc5496d17caa5aa833fd33eca (diff) | |
download | poky-34eb0044356a04cc816808a57804242ea58d59c2.tar.gz |
bitbake: depexp: Improve wording on requirements
Since -g is required, tell the user exactly so.
(Bitbake rev: f05f74e98b0dd567a8b0cb85dc8183716619991b)
Signed-off-by: Gary Thomas <gary@mlbassoc.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui')
-rw-r--r-- | bitbake/lib/bb/ui/depexp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/depexp.py b/bitbake/lib/bb/ui/depexp.py index 0b160e2f4e..4578dce615 100644 --- a/bitbake/lib/bb/ui/depexp.py +++ b/bitbake/lib/bb/ui/depexp.py | |||
@@ -202,7 +202,7 @@ def main(server, eventHandler, params): | |||
202 | return 1 | 202 | return 1 |
203 | cmdline = cmdline['action'] | 203 | cmdline = cmdline['action'] |
204 | if not cmdline or cmdline[0] != "generateDotGraph": | 204 | if not cmdline or cmdline[0] != "generateDotGraph": |
205 | print("This UI is only compatible with the -g option") | 205 | print("This UI requires the -g option") |
206 | return 1 | 206 | return 1 |
207 | ret, error = server.runCommand(["generateDepTreeEvent", cmdline[1], cmdline[2]]) | 207 | ret, error = server.runCommand(["generateDepTreeEvent", cmdline[1], cmdline[2]]) |
208 | if error: | 208 | if error: |