diff options
Diffstat (limited to 'meta/classes/license.bbclass')
-rw-r--r-- | meta/classes/license.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass index 81458e797b..d4be478166 100644 --- a/meta/classes/license.bbclass +++ b/meta/classes/license.bbclass | |||
@@ -505,7 +505,7 @@ def find_license_files(d): | |||
505 | bb.warn("%s: Failed to parse it's LICENSE field." % (d.getVar('PF'))) | 505 | bb.warn("%s: Failed to parse it's LICENSE field." % (d.getVar('PF'))) |
506 | # Add files from LIC_FILES_CHKSUM to list of license files | 506 | # Add files from LIC_FILES_CHKSUM to list of license files |
507 | lic_chksum_paths = defaultdict(OrderedDict) | 507 | lic_chksum_paths = defaultdict(OrderedDict) |
508 | for path, data in lic_chksums.items(): | 508 | for path, data in sorted(lic_chksums.items()): |
509 | lic_chksum_paths[os.path.basename(path)][data] = (os.path.join(srcdir, path), data[1], data[2]) | 509 | lic_chksum_paths[os.path.basename(path)][data] = (os.path.join(srcdir, path), data[1], data[2]) |
510 | for basename, files in lic_chksum_paths.items(): | 510 | for basename, files in lic_chksum_paths.items(): |
511 | if len(files) == 1: | 511 | if len(files) == 1: |