From: Trevor Woerner Date: Sat, 25 Aug 2012 23:26:45 +0000 (-0400) Subject: bitbake: bin/bitbake: Clarify wording in help output for -s X-Git-Tag: rev_ivi_2015_02_04~15781 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0aa8e2bee76b3bd8b37ed9fb6b7f1cc07ef1f9f3;p=scm%2Fbb%2Ftizen-distro.git bitbake: bin/bitbake: Clarify wording in help output for -s The '-s' option shows (input) recipes, not (built/output) packages. Clarify the help wording for this option so it is consistent with how bitbake defines recipes and packages. (Bitbake rev: 0cac6d647c58ae449323959220775fc1afd5bfb0) Signed-off-by: Richard Purdie --- diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 0b4f556..ed2ff06 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake @@ -142,7 +142,7 @@ Default BBFILES are the .bb files in the current directory.""") parser.add_option("-p", "--parse-only", help = "quit after parsing the BB files (developers only)", action = "store_true", dest = "parse_only", default = False) - parser.add_option("-s", "--show-versions", help = "show current and preferred versions of all packages", + parser.add_option("-s", "--show-versions", help = "show current and preferred versions of all recipes", action = "store_true", dest = "show_versions", default = False) parser.add_option("-e", "--environment", help = "show the global or per-package environment (this is what used to be bbread)",