projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2131c13
)
Fix broken reference to os.path.realpath() inside LinkageMap.getSoname().
author
Zac Medico
<zmedico@gentoo.org>
Fri, 8 Aug 2008 21:45:39 +0000
(21:45 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Fri, 8 Aug 2008 21:45:39 +0000
(21:45 -0000)
svn path=/main/trunk/; revision=11356
pym/portage/dbapi/vartree.py
patch
|
blob
|
history
diff --git
a/pym/portage/dbapi/vartree.py
b/pym/portage/dbapi/vartree.py
index ff3d976b0f190e72debf2a178479ab6697765e8f..5c6d1dd6035ee0a5fcd224fc93522c6fc143396e 100644
(file)
--- a/
pym/portage/dbapi/vartree.py
+++ b/
pym/portage/dbapi/vartree.py
@@
-212,7
+212,7
@@
class LinkageMap(object):
if not self._libs:
self.rebuild()
if obj not in self._obj_properties:
- obj = realpath(obj)
+ obj =
os.path.
realpath(obj)
if obj not in self._obj_properties:
raise KeyError("%s not in object list" % obj)
arch, needed, path, soname = self._obj_properties[obj]