From: Ross Burton Date: Thu, 3 Dec 2015 17:40:33 +0000 (+0000) Subject: scripts/oe-pkgdata-util: sort the packages in list-pkg-files X-Git-Tag: 2016-4~2051 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=6c31655c5abf6ad4308848c116444cc7b1e798bb;p=openembedded-core.git 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. Signed-off-by: Ross Burton --- diff --git a/scripts/oe-pkgdata-util b/scripts/oe-pkgdata-util index cb19cc4ae5..afdceaae29 100755 --- a/scripts/oe-pkgdata-util +++ b/scripts/oe-pkgdata-util @@ -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)