diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-02-19 22:39:00 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-21 09:32:43 +0000 |
commit | b2d44729e9c3c600203c89eaa92bda264121780d (patch) | |
tree | de065c880c4e197fb21cb4e7a8b28941613d1efe /scripts | |
parent | a8e0e5ecd329b5a9f3019854ee6faa1cff62c69e (diff) | |
download | poky-b2d44729e9c3c600203c89eaa92bda264121780d.tar.gz |
devtool: modify: tweak help description for behaviour change
I should have adjusted this in OE-Core commit
80a44e52609a89d9ffe816181ae193af491c06ac where the behaviour changed.
(From OE-Core rev: 13409a2b899bb74b8060c840b8c7ef8759d099cb)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/devtool/standard.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index 084039a855..daf18c9318 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py | |||
@@ -1320,7 +1320,7 @@ def register_commands(subparsers, context): | |||
1320 | parser_add.set_defaults(func=add) | 1320 | parser_add.set_defaults(func=add) |
1321 | 1321 | ||
1322 | parser_modify = subparsers.add_parser('modify', help='Modify the source for an existing recipe', | 1322 | parser_modify = subparsers.add_parser('modify', help='Modify the source for an existing recipe', |
1323 | description='Enables modifying the source for an existing recipe. You can either provide your own pre-prepared source tree, or specify -x/--extract to extract the source being fetched by the recipe.', | 1323 | description='Sets up the build environment to modify the source for an existing recipe. The default behaviour is to extract the source being fetched by the recipe into a git tree so you can work on it; alternatively if you already have your own pre-prepared source tree you can specify -n/--no-extract.', |
1324 | group='starting', order=90) | 1324 | group='starting', order=90) |
1325 | parser_modify.add_argument('recipename', help='Name of existing recipe to edit (just name - no version, path or extension)') | 1325 | parser_modify.add_argument('recipename', help='Name of existing recipe to edit (just name - no version, path or extension)') |
1326 | parser_modify.add_argument('srctree', nargs='?', help='Path to external source tree. If not specified, a subdirectory of %s will be used.' % defsrctree) | 1326 | parser_modify.add_argument('srctree', nargs='?', help='Path to external source tree. If not specified, a subdirectory of %s will be used.' % defsrctree) |
@@ -1331,7 +1331,7 @@ def register_commands(subparsers, context): | |||
1331 | group = parser_modify.add_mutually_exclusive_group() | 1331 | group = parser_modify.add_mutually_exclusive_group() |
1332 | group.add_argument('--same-dir', '-s', help='Build in same directory as source', action="store_true") | 1332 | group.add_argument('--same-dir', '-s', help='Build in same directory as source', action="store_true") |
1333 | group.add_argument('--no-same-dir', help='Force build in a separate build directory', action="store_true") | 1333 | group.add_argument('--no-same-dir', help='Force build in a separate build directory', action="store_true") |
1334 | parser_modify.add_argument('--branch', '-b', default="devtool", help='Name for development branch to checkout (only when using -x) (default "%(default)s")') | 1334 | parser_modify.add_argument('--branch', '-b', default="devtool", help='Name for development branch to checkout (when not using -n/--no-extract) (default "%(default)s")') |
1335 | parser_modify.set_defaults(func=modify) | 1335 | parser_modify.set_defaults(func=modify) |
1336 | 1336 | ||
1337 | parser_extract = subparsers.add_parser('extract', help='Extract the source for an existing recipe', | 1337 | parser_extract = subparsers.add_parser('extract', help='Extract the source for an existing recipe', |