Browse Source

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>
Ross Burton 8 years ago
parent
commit
6c31655c5a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/oe-pkgdata-util

+ 1 - 1
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)