summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/dbapi/vartree.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py
index 2267ca92e..3f8a07a24 100644
--- a/pym/portage/dbapi/vartree.py
+++ b/pym/portage/dbapi/vartree.py
@@ -525,7 +525,7 @@ class vardbapi(dbapi):
def get_library_map(self):
""" Read the global library->consumer map for this vdb instance """
- mapfilename = self.getpath(".NEEDED")
+ mapfilename = os.path.join(self.root, CACHE_PATH, "library_consumers")
if not os.path.exists(mapfilename):
self.update_library_map()
rValue = {}
@@ -537,7 +537,7 @@ class vardbapi(dbapi):
def update_library_map(self):
""" Update the global library->consumer map for this vdb instance. """
- mapfilename = self.getpath(".NEEDED")
+ mapfilename = os.path.join(self.root, CACHE_PATH, "library_consumers")
obj_dict = {}
for cpv in self.cpv_all():
needed_list = self.aux_get(cpv, ["NEEDED"])[0]