summaryrefslogtreecommitdiffstats
path: root/meta/classes-global/staging.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes-global/staging.bbclass')
-rw-r--r--meta/classes-global/staging.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes-global/staging.bbclass b/meta/classes-global/staging.bbclass
index ab3e1d71b5..3678a1b441 100644
--- a/meta/classes-global/staging.bbclass
+++ b/meta/classes-global/staging.bbclass
@@ -245,7 +245,7 @@ def staging_populate_sysroot_dir(targetsysroot, nativesysroot, native, d):
245 continue 245 continue
246 246
247 staging_processfixme(fixme, targetdir, targetsysroot, nativesysroot, d) 247 staging_processfixme(fixme, targetdir, targetsysroot, nativesysroot, d)
248 for p in postinsts: 248 for p in sorted(postinsts):
249 bb.note("Running postinst {}, output:\n{}".format(p, subprocess.check_output(p, shell=True, stderr=subprocess.STDOUT))) 249 bb.note("Running postinst {}, output:\n{}".format(p, subprocess.check_output(p, shell=True, stderr=subprocess.STDOUT)))
250 250
251# 251#
@@ -629,7 +629,7 @@ python extend_recipe_sysroot() {
629 for f in fixme: 629 for f in fixme:
630 staging_processfixme(fixme[f], f, recipesysroot, recipesysrootnative, d) 630 staging_processfixme(fixme[f], f, recipesysroot, recipesysrootnative, d)
631 631
632 for p in postinsts: 632 for p in sorted(postinsts):
633 bb.note("Running postinst {}, output:\n{}".format(p, subprocess.check_output(p, shell=True, stderr=subprocess.STDOUT))) 633 bb.note("Running postinst {}, output:\n{}".format(p, subprocess.check_output(p, shell=True, stderr=subprocess.STDOUT)))
634 634
635 for dep in manifests: 635 for dep in manifests: