From 6c31655c5abf6ad4308848c116444cc7b1e798bb Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Thu, 3 Dec 2015 17:40:33 +0000 Subject: 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 --- scripts/oe-pkgdata-util | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/oe-pkgdata-util') 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) -- cgit 1.2.3-korg