summaryrefslogtreecommitdiffstats
path: root/pym/portage/util/_dyn_libs
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2010-09-29 13:35:31 +0200
committerFabian Groffen <grobian@gentoo.org>2010-09-29 13:35:31 +0200
commit178de86d7d646a64dd048b6e3e4afa06a4ea4df0 (patch)
tree0b2ea1929463fa31eaf91ec513ae3a6d7bf03414 /pym/portage/util/_dyn_libs
parent11ec19654d5fd74b148a08a68cd09f0cb83cbf64 (diff)
downloadportage-178de86d7d646a64dd048b6e3e4afa06a4ea4df0.tar.gz
portage-178de86d7d646a64dd048b6e3e4afa06a4ea4df0.tar.bz2
portage-178de86d7d646a64dd048b6e3e4afa06a4ea4df0.zip
use ROOT iso EROOT with PreservedLibsRegistry, since all entries already have EPREFIX
Diffstat (limited to 'pym/portage/util/_dyn_libs')
-rw-r--r--pym/portage/util/_dyn_libs/PreservedLibsRegistry.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/pym/portage/util/_dyn_libs/PreservedLibsRegistry.py b/pym/portage/util/_dyn_libs/PreservedLibsRegistry.py
index f05028fa9..0d0b57d21 100644
--- a/pym/portage/util/_dyn_libs/PreservedLibsRegistry.py
+++ b/pym/portage/util/_dyn_libs/PreservedLibsRegistry.py
@@ -21,16 +21,16 @@ from portage.versions import cpv_getkey
class PreservedLibsRegistry(object):
""" This class handles the tracking of preserved library objects """
- def __init__(self, eroot, filename, autocommit=True):
+ def __init__(self, root, filename, autocommit=True):
"""
- @param eroot: root used to check existence of paths in pruneNonExisting
- @type eroot: String
+ @param root: root used to check existence of paths in pruneNonExisting
+ @type root: String
@param filename: absolute path for saving the preserved libs records
@type filename: String
@param autocommit: determines if the file is written after every update
@type autocommit: Boolean
"""
- self._eroot = eroot
+ self._root = root
self._filename = filename
self._autocommit = autocommit
self.load()
@@ -114,7 +114,7 @@ class PreservedLibsRegistry(object):
for cps in list(self._data):
cpv, counter, paths = self._data[cps]
paths = [f for f in paths \
- if os.path.exists(os.path.join(self._eroot, f.lstrip(os.sep)))]
+ if os.path.exists(os.path.join(self._root, f.lstrip(os.sep)))]
if len(paths) > 0:
self._data[cps] = (cpv, counter, paths)
else: