summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2012-06-21 18:28:46 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-06-25 14:57:15 +0100
commit25441f47caadeb66a98ec4317211430772b3e5cf (patch)
tree1c42ad47645f0dbb81873d002ec67d332fda9b3d /bitbake/bin
parenteaf54b8dbf9371965b4ccf18609edeb8eee16144 (diff)
downloadpoky-25441f47caadeb66a98ec4317211430772b3e5cf.tar.gz
bitbake: bitbake: tweak help text for -C slightly
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. (Bitbake rev: 9ab269410ef5cd4753fe11ec74759f421685bb7b) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-xbitbake/bin/bitbake2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index f23673fdf8..e55a538057 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -118,7 +118,7 @@ Default BBFILES are the .bb files in the current directory.""")
118 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", 118 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",
119 action = "store", dest = "cmd") 119 action = "store", dest = "cmd")
120 120
121 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)", 121 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)",
122 action = "store", dest = "invalidate_stamp") 122 action = "store", dest = "invalidate_stamp")
123 123
124 parser.add_option("-r", "--read", help = "read the specified file before bitbake.conf", 124 parser.add_option("-r", "--read", help = "read the specified file before bitbake.conf",