[oe-commits] Chris Larson : Revert "package.bbclass: when running 'file', be explicit about the path to the magic"

git version control git at git.openembedded.org
Mon Mar 1 18:46:02 UTC 2010


Module: openembedded.git
Branch: shr/unstable
Commit: 9ce55ea62be97061e4b02c189f77a4ca506f3a7d
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=9ce55ea62be97061e4b02c189f77a4ca506f3a7d

Author: Chris Larson <clarson at kergoth.com>
Date:   Mon Mar  1 11:15:56 2010 -0700

Revert "package.bbclass: when running 'file', be explicit about the path to the magic"

Drop this for now, as apparently the magic file location varies with 'file'
version.  I'll just patch file to find it relative to the binary location
instead.

This reverts commit 1b5e7041ae3b26b7e59c76bd2f2fd72e35492940.

---

 classes/package.bbclass |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/classes/package.bbclass b/classes/package.bbclass
index 72c9053..062f782 100644
--- a/classes/package.bbclass
+++ b/classes/package.bbclass
@@ -155,12 +155,11 @@ 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 -m %s '%s'" % (pathprefix, magicfile, file))
+    ret, result = commands.getstatusoutput("%sfile '%s'" % (pathprefix, file))
 
     if ret:
-        bb.error("runstrip: 'file -m %s %s' failed (forced strip)" % (magicfile, file))
+        bb.error("runstrip: 'file %s' failed (forced strip)" % file)
 
     if "not stripped" not in result:
         bb.debug(1, "runstrip: skip %s" % file)





More information about the Openembedded-commits mailing list