summaryrefslogtreecommitdiffstats
path: root/scripts/oe-pkgdata-util
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2015-12-03 17:40:33 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-08 10:20:06 +0000
commit6c31655c5abf6ad4308848c116444cc7b1e798bb (patch)
tree8977a680c73519aa212e5b2db93cd203fe7b317f /scripts/oe-pkgdata-util
parent59b1eefb801dfb1d4afe9640e3c8a070d4e1867f (diff)
downloadopenembedded-core-6c31655c5abf6ad4308848c116444cc7b1e798bb.tar.gz
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 <ross.burton@intel.com>
Diffstat (limited to 'scripts/oe-pkgdata-util')
-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 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)