diff options
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/package.py b/meta/lib/oe/package.py index 1e5c3aa8e1..599fca60f8 100644 --- a/meta/lib/oe/package.py +++ b/meta/lib/oe/package.py | |||
@@ -73,7 +73,7 @@ def strip_execs(pn, dstdir, strip_cmd, libdir, base_libdir, qa_already_stripped= | |||
73 | def is_elf(path): | 73 | def is_elf(path): |
74 | exec_type = 0 | 74 | exec_type = 0 |
75 | ret, result = oe.utils.getstatusoutput( | 75 | ret, result = oe.utils.getstatusoutput( |
76 | "file \"%s\"" % path.replace("\"", "\\\"")) | 76 | "file -b \"%s\"" % path.replace("\"", "\\\"")) |
77 | 77 | ||
78 | if ret: | 78 | if ret: |
79 | bb.error("split_and_strip_files: 'file %s' failed" % path) | 79 | bb.error("split_and_strip_files: 'file %s' failed" % path) |