scripts/oe-pkgdata-util: sort the packages in list-pkg-files

Sort the list of packages in list-pkg-files to make the output easier to read.

(From OE-Core rev: 6c31655c5abf6ad4308848c116444cc7b1e798bb)

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ross Burton 2015-12-03 17:40:33 +00:00 committed by Richard Purdie
parent 80e39195c7
commit 70d459ceba
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ def list_pkg_files(args):
sys.exit(1)
pkglist = args.pkg
for pkg in pkglist:
for pkg in sorted(pkglist):
print("%s:" % pkg)
if args.runtime:
pkgdatafile = os.path.join(args.pkgdata_dir, "runtime-reverse", pkg)