summaryrefslogtreecommitdiffstats
path: root/meta/classes-global
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes-global')
-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 cf1e4600fd..ab3e1d71b5 100644
--- a/meta/classes-global/staging.bbclass
+++ b/meta/classes-global/staging.bbclass
@@ -246,7 +246,7 @@ def staging_populate_sysroot_dir(targetsysroot, nativesysroot, native, d):
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 postinsts:
249 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#
252# Manifests here are complicated. The main sysroot area has the unpacked sstate 252# Manifests here are complicated. The main sysroot area has the unpacked sstate
@@ -630,7 +630,7 @@ python extend_recipe_sysroot() {
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 postinsts:
633 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:
636 c = setscenedeps[dep][0] 636 c = setscenedeps[dep][0]