diff options
Diffstat (limited to 'scripts/lib/wic/utils/oe/misc.py')
-rw-r--r-- | scripts/lib/wic/utils/oe/misc.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/lib/wic/utils/oe/misc.py b/scripts/lib/wic/utils/oe/misc.py index 9eaf039f95..f08ff15a34 100644 --- a/scripts/lib/wic/utils/oe/misc.py +++ b/scripts/lib/wic/utils/oe/misc.py | |||
@@ -86,6 +86,12 @@ def exec_native_cmd(cmd_and_args, native_sysroot, catch=3): | |||
86 | msger.error("A native program %s required to build the image " | 86 | msger.error("A native program %s required to build the image " |
87 | "was not found (see details above). Please make sure " | 87 | "was not found (see details above). Please make sure " |
88 | "it's installed and try again." % args[0]) | 88 | "it's installed and try again." % args[0]) |
89 | if out: | ||
90 | msger.debug('"%s" output: %s' % (args[0], out)) | ||
91 | |||
92 | if rc != 0: | ||
93 | msger.error("exec_cmd: '%s' returned '%s' instead of 0" % \ | ||
94 | (cmd_and_args, rc)) | ||
89 | 95 | ||
90 | return (rc, out) | 96 | return (rc, out) |
91 | 97 | ||