diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-07-24 01:22:42 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-24 12:31:39 +0100 |
commit | 8f52c69183a6c2b50ed470c27383697ebc38efef (patch) | |
tree | 437402c76569f51a653acc6fe2d65e3d0598aed0 | |
parent | 1306f263ed7b3de4e85c6dc8b377e5c05afd6bf0 (diff) | |
download | poky-8f52c69183a6c2b50ed470c27383697ebc38efef.tar.gz |
bitbake: bitbake: remove choices for dump-signatures
The SIGNATURE_HANDLER can be defined by the user, so we can't use choices.
(Bitbake rev: 0036b36e333a68c6d30a6bf5c21bfd4fd3e8441b)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | bitbake/bin/bitbake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 39aa3ec383..b8acd6e631 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
@@ -140,7 +140,7 @@ class BitBakeConfigParameters(cookerdata.ConfigParameters): | |||
140 | action = "store_true", dest = "dry_run", default = False) | 140 | action = "store_true", dest = "dry_run", default = False) |
141 | 141 | ||
142 | parser.add_option("-S", "--dump-signatures", help = "Dump out the signature construction information, with no task execution. The SIGNATURE_HANDLER parameter is passed to the handler. Two common values are none and printdiff but the handler may define more/less. none means only dump the signature, printdiff means compare the dumped signature with the cached one.", | 142 | parser.add_option("-S", "--dump-signatures", help = "Dump out the signature construction information, with no task execution. The SIGNATURE_HANDLER parameter is passed to the handler. Two common values are none and printdiff but the handler may define more/less. none means only dump the signature, printdiff means compare the dumped signature with the cached one.", |
143 | action = "append", dest = "dump_signatures", default = [], type="choice", choices=("none", "printdiff"), metavar="SIGNATURE_HANDLER") | 143 | action = "append", dest = "dump_signatures", default = [], metavar="SIGNATURE_HANDLER") |
144 | 144 | ||
145 | parser.add_option("-p", "--parse-only", help = "Quit after parsing the BB recipes.", | 145 | parser.add_option("-p", "--parse-only", help = "Quit after parsing the BB recipes.", |
146 | action = "store_true", dest = "parse_only", default = False) | 146 | action = "store_true", dest = "parse_only", default = False) |