diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/package.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 9b6862decf..7bcfa02755 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -116,7 +116,7 @@ def do_split_packages(d, root, file_regex, output_pattern, description, postinst | |||
116 | mainpkg = mainpkg.replace('-dev', '') | 116 | mainpkg = mainpkg.replace('-dev', '') |
117 | extra_depends = mainpkg | 117 | extra_depends = mainpkg |
118 | 118 | ||
119 | for o in objs: | 119 | for o in sorted(objs): |
120 | import re, stat | 120 | import re, stat |
121 | if match_path: | 121 | if match_path: |
122 | m = re.match(file_regex, o) | 122 | m = re.match(file_regex, o) |
@@ -415,7 +415,7 @@ python package_do_split_locales() { | |||
415 | summary = d.getVar('SUMMARY', True) or pn | 415 | summary = d.getVar('SUMMARY', True) or pn |
416 | description = d.getVar('DESCRIPTION', True) or "" | 416 | description = d.getVar('DESCRIPTION', True) or "" |
417 | locale_section = d.getVar('LOCALE_SECTION', True) | 417 | locale_section = d.getVar('LOCALE_SECTION', True) |
418 | for l in locales: | 418 | for l in sorted(locales): |
419 | ln = legitimize_package_name(l) | 419 | ln = legitimize_package_name(l) |
420 | pkg = pn + '-locale-' + ln | 420 | pkg = pn + '-locale-' + ln |
421 | packages.append(pkg) | 421 | packages.append(pkg) |