summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2016-10-25 03:31:12 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-11-16 10:37:57 +0000
commitf068277f9086ecb07efa8007c5670de935be95c5 (patch)
tree60c416944781150397749d0ba623bfd81f031d78 /scripts
parentff95390beeb091b2879cbfd8195beee34c79aac2 (diff)
downloadpoky-f068277f9086ecb07efa8007c5670de935be95c5.tar.gz
oe-pkgdata-util: Use standard verb form in help info.
"Shows" -> "Show", to be consistent with standard form of help output. (From OE-Core rev: 5a7994df6cdb5af8d240e2802e6bb3d9671f17e3) (From OE-Core rev: 417ee79d97b0f016c4b55c49690107d541cfc250) Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/oe-pkgdata-util2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-pkgdata-util b/scripts/oe-pkgdata-util
index bb917b4fc4..dbffd6a36b 100755
--- a/scripts/oe-pkgdata-util
+++ b/scripts/oe-pkgdata-util
@@ -526,7 +526,7 @@ def main():
526 parser_lookup_recipe.set_defaults(func=lookup_recipe) 526 parser_lookup_recipe.set_defaults(func=lookup_recipe)
527 527
528 parser_package_info = subparsers.add_parser('package-info', 528 parser_package_info = subparsers.add_parser('package-info',
529 help='Shows version, recipe and size information for one or more packages', 529 help='Show version, recipe and size information for one or more packages',
530 description='Looks up the specified runtime package(s) and display information') 530 description='Looks up the specified runtime package(s) and display information')
531 parser_package_info.add_argument('pkg', nargs='*', help='Runtime package name to look up') 531 parser_package_info.add_argument('pkg', nargs='*', help='Runtime package name to look up')
532 parser_package_info.add_argument('-f', '--file', help='Read package names from the specified file (one per line, first field only)') 532 parser_package_info.add_argument('-f', '--file', help='Read package names from the specified file (one per line, first field only)')