From bf55d26ed5704cf74f359773a12fbd7e1ea52f51 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 28 Oct 2008 23:15:24 +0000 Subject: Fix $ROOT handling inside LinkageMap.findConsumers(). svn path=/main/trunk/; revision=11741 --- pym/portage/dbapi/vartree.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index effde704c..57dba00a1 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -575,7 +575,8 @@ class LinkageMap(object): raise KeyError("%s (%s) not in object list" % (obj_key, obj)) # Determine the directory(ies) from the set of objects. - objs_dirs = set([os.path.dirname(x) for x in objs]) + objs_dirs = set(os.path.join(self._root, + os.path.dirname(x).lstrip(os.sep)) for x in objs) # If there is another version of this lib with the # same soname and the master link points to that -- cgit v1.2.3-1-g7c22