diff options
author | Ross Burton <ross.burton@intel.com> | 2015-12-03 17:40:33 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-08 10:20:06 +0000 |
commit | 6c31655c5abf6ad4308848c116444cc7b1e798bb (patch) | |
tree | 8977a680c73519aa212e5b2db93cd203fe7b317f /scripts | |
parent | 59b1eefb801dfb1d4afe9640e3c8a070d4e1867f (diff) | |
download | openembedded-core-6c31655c5abf6ad4308848c116444cc7b1e798bb.tar.gz openembedded-core-6c31655c5abf6ad4308848c116444cc7b1e798bb.tar.bz2 openembedded-core-6c31655c5abf6ad4308848c116444cc7b1e798bb.zip |
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')
-rwxr-xr-x | scripts/oe-pkgdata-util | 2 |
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) |