summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2011-07-22 16:22:54 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-25 12:54:16 +0100
commit93cc53f842f2e60d02e07874434b9628b0f13966 (patch)
tree42a95171a1bd06a8715e45d4f020db1e94d710c0 /bitbake/bin
parent9adf01d7be1c2fedfb71975619af60e8af2fe3f2 (diff)
downloadpoky-93cc53f842f2e60d02e07874434b9628b0f13966.tar.gz
add note to -b option indicating no dependency handling
The -b option doesn't handle dependencies so note this in the help. (Bitbake rev: b133b2e2dd5bcde705397eb38fa20a5c4da6e3b3) 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 206d97b22a..f198fd1556 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -102,7 +102,7 @@ It expects that BBFILES is defined, which is a space separated list of files to
102be executed. BBFILES does support wildcards. 102be executed. BBFILES does support wildcards.
103Default BBFILES are the .bb files in the current directory.""") 103Default BBFILES are the .bb files in the current directory.""")
104 104
105 parser.add_option("-b", "--buildfile", help = "execute the task against this .bb file, rather than a package from BBFILES.", 105 parser.add_option("-b", "--buildfile", help = "execute the task against this .bb file, rather than a package from BBFILES. Does not handle any dependencies.",
106 action = "store", dest = "buildfile", default = None) 106 action = "store", dest = "buildfile", default = None)
107 107
108 parser.add_option("-k", "--continue", help = "continue as much as possible after an error. While the target that failed, and those that depend on it, cannot be remade, the other dependencies of these targets can be processed all the same.", 108 parser.add_option("-k", "--continue", help = "continue as much as possible after an error. While the target that failed, and those that depend on it, cannot be remade, the other dependencies of these targets can be processed all the same.",