summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe/package.py')
-rw-r--r--meta/lib/oe/package.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/lib/oe/package.py b/meta/lib/oe/package.py
index 8bc56c6e88..947a97785a 100644
--- a/meta/lib/oe/package.py
+++ b/meta/lib/oe/package.py
@@ -34,14 +34,14 @@ def runstrip(arg):
34 stripcmd = "'%s' %s '%s' -o '%s.tmp' && chown --reference='%s' '%s.tmp' && mv '%s.tmp' '%s'" % (strip, extraflags, file, file, file, file, file, file) 34 stripcmd = "'%s' %s '%s' -o '%s.tmp' && chown --reference='%s' '%s.tmp' && mv '%s.tmp' '%s'" % (strip, extraflags, file, file, file, file, file, file)
35 bb.debug(1, "runstrip: %s" % stripcmd) 35 bb.debug(1, "runstrip: %s" % stripcmd)
36 36
37 ret = subprocess.call(stripcmd, shell=True) 37 try:
38 output = subprocess.check_output(stripcmd, stderr=subprocess.STDOUT, shell=True)
39 except subprocess.CalledProcessError as e:
40 bb.error("runstrip: '%s' strip command failed with %s (%s)" % (stripcmd, e.returncode, e.output))
38 41
39 if newmode: 42 if newmode:
40 os.chmod(file, origmode) 43 os.chmod(file, origmode)
41 44
42 if ret:
43 bb.error("runstrip: '%s' strip command failed" % stripcmd)
44
45 return 45 return
46 46
47 47