[OE-core] [RFC][PATCH] rootfs.py: show intercept script output in log.do_rootfs
Martin Jansa
martin.jansa at gmail.com
Fri Sep 4 18:56:24 UTC 2015
* without this the output wasn't shown anywhere even when the bb.warn
says:
"See log for details!"
Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
---
meta/lib/oe/rootfs.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py
index 76950ec..2372226 100644
--- a/meta/lib/oe/rootfs.py
+++ b/meta/lib/oe/rootfs.py
@@ -279,7 +279,7 @@ class Rootfs(object):
bb.note("> Executing %s intercept ..." % script)
try:
- subprocess.check_output(script_full)
+ subprocess.check_call(script_full)
except subprocess.CalledProcessError as e:
bb.warn("The postinstall intercept hook '%s' failed (exit code: %d)! See log for details!" %
(script, e.returncode))
--
2.5.0
More information about the Openembedded-core
mailing list