1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

relocatable.bbclass: Handle symlinks correctly

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie
2010-02-22 14:20:26 +00:00
parent 814c3efb5c
commit df76efbdee
+6 -1
View File
@@ -14,10 +14,15 @@ def rpath_replace (path, d):
for d in bindirs:
dir = path + "/" + d
bb.note("Checking %s for binaries to process" % dir)
bb.debug("Checking %s for binaries to process" % dir)
if os.path.exists(dir):
for file in os.listdir(dir):
fpath = dir + "/" + file
if os.path.islink(fpath):
fpath = os.readlink(fpath)
if not os.path.isabs(fpath):
fpath = os.path.normpath(os.path.join(dir, fpath))
#bb.note("Testing %s for relocatability" % fpath)
p = sub.Popen([cmd, '-l', fpath],stdout=sub.PIPE,stderr=sub.PIPE)
err, out = p.communicate()