summaryrefslogtreecommitdiffstats
path: root/meta/classes/package.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/package.bbclass')
-rw-r--r--meta/classes/package.bbclass8
1 files changed, 2 insertions, 6 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index a74ec8a847..f95fdf7251 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -1000,12 +1000,8 @@ python package_fixsymlinks () {
1000 for path in pkgfiles[pkg]: 1000 for path in pkgfiles[pkg]:
1001 rpath = path[len(inst_root):] 1001 rpath = path[len(inst_root):]
1002 pkg_files[pkg].append(rpath) 1002 pkg_files[pkg].append(rpath)
1003 try: 1003 rtarget = oe.path.realpath(path, inst_root, True, assume_dir = True)
1004 rtarget = oe.path.realpath(path, inst_root, True) 1004 if not os.path.lexists(rtarget):
1005 os.lstat(rtarget)
1006 except OSError, (err, strerror):
1007 if err != errno.ENOENT:
1008 raise
1009 dangling_links[pkg].append(os.path.normpath(rtarget[len(inst_root):])) 1005 dangling_links[pkg].append(os.path.normpath(rtarget[len(inst_root):]))
1010 1006
1011 newrdepends = {} 1007 newrdepends = {}