From patchwork Sat Aug 25 02:13:17 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel] bitbake: clarify help wording Date: Sat, 25 Aug 2012 02:13:17 -0000 From: Trevor Woerner X-Patchwork-Id: 35335 Message-Id: <1345860797-4302-1-git-send-email-twoerner@gmail.com> To: bitbake-devel@lists.openembedded.org From: Trevor Woerner The '-s' option shows (input) recipes, not (built/output) packages. Clarify the help wording for this option so it is consistent. Signed-off-by: Trevor Woerner --- bin/bitbake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/bitbake b/bin/bitbake index 0b4f556..ed2ff06 100755 --- a/bin/bitbake +++ b/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)",