diff options
author | Tom Rini <tom_rini@mentor.com> | 2010-02-19 08:47:48 +0000 |
---|---|---|
committer | Chris Larson <chris_larson@mentor.com> | 2010-02-26 13:06:37 -0700 |
commit | 1b5e7041ae3b26b7e59c76bd2f2fd72e35492940 (patch) | |
tree | 332bf94c7f9235fd1a56554472ea10792c97c07e | |
parent | 9ac4de8c015c991b8210bdea9bb472633110c268 (diff) |
package.bbclass: when running 'file', be explicit about the path to the magic
This works around one relocation issue.
Signed-off-by: Tom Rini <tom_rini@mentor.com>
Signed-off-by: Chris Larson <chris_larson@mentor.com>
-rw-r--r-- | classes/package.bbclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/classes/package.bbclass b/classes/package.bbclass index 062f782129..72c9053cc4 100644 --- a/classes/package.bbclass +++ b/classes/package.bbclass @@ -155,11 +155,12 @@ def runstrip(file, d): import commands, stat pathprefix = "export PATH=%s; " % bb.data.getVar('PATH', d, True) + magicfile = "%s/file/magic" % bb.data.getVar('STAGING_DATADIR_NATIVE', d, True) - ret, result = commands.getstatusoutput("%sfile '%s'" % (pathprefix, file)) + ret, result = commands.getstatusoutput("%sfile -m %s '%s'" % (pathprefix, magicfile, file)) if ret: - bb.error("runstrip: 'file %s' failed (forced strip)" % file) + bb.error("runstrip: 'file -m %s %s' failed (forced strip)" % (magicfile, file)) if "not stripped" not in result: bb.debug(1, "runstrip: skip %s" % file) |