From patchwork Thu Jun 21 17:28:46 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel,1/2] bitbake: tweak help text for -C slightly Date: Thu, 21 Jun 2012 17:28:46 -0000 From: Paul Eggleton X-Patchwork-Id: 30411 Message-Id: <1340299727-8480-1-git-send-email-paul.eggleton@linux.intel.com> To: bitbake-devel@lists.openembedded.org What is specified is a command (or "cmd" as in the help text for -f) rather than a task - i.e. you specify compile, not do_compile, so change the sentence to reflect that and reorder it slightly so it makes sense. Signed-off-by: Paul Eggleton --- bin/bitbake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/bitbake b/bin/bitbake index f23673f..e55a538 100755 --- a/bin/bitbake +++ b/bin/bitbake @@ -118,7 +118,7 @@ Default BBFILES are the .bb files in the current directory.""") parser.add_option("-c", "--cmd", help = "Specify task to execute. Note that this only executes the specified task for the providee and the packages it depends on, i.e. 'compile' does not implicitly call stage for the dependencies (IOW: use only if you know what you are doing). Depending on the base.bbclass a listtasks tasks is defined and will show available tasks", action = "store", dest = "cmd") - parser.add_option("-C", "--clear-stamp", help = "Invalidate the specified stamp for a task such as 'compile' and run the default task for the specified target(s)", + parser.add_option("-C", "--clear-stamp", help = "Invalidate the stamp for the specified cmd such as 'compile' and run the default task for the specified target(s)", action = "store", dest = "invalidate_stamp") parser.add_option("-r", "--read", help = "read the specified file before bitbake.conf",