diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/package.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 9bba021efb..79783071bc 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -918,7 +918,7 @@ python split_and_strip_files () { | |||
918 | # 16 - kernel module | 918 | # 16 - kernel module |
919 | def isELF(path): | 919 | def isELF(path): |
920 | type = 0 | 920 | type = 0 |
921 | ret, result = oe.utils.getstatusoutput("file '%s'" % path) | 921 | ret, result = oe.utils.getstatusoutput("file -b '%s'" % path) |
922 | 922 | ||
923 | if ret: | 923 | if ret: |
924 | msg = "split_and_strip_files: 'file %s' failed" % path | 924 | msg = "split_and_strip_files: 'file %s' failed" % path |