summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/_emerge/actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py
index 707bb7b41..5be9a9dc5 100644
--- a/pym/_emerge/actions.py
+++ b/pym/_emerge/actions.py
@@ -881,6 +881,7 @@ def calc_depclean(settings, trees, ldpath_mtimes,
cleanlist = create_cleanlist()
clean_set = set(cleanlist)
+ real_vardb = trees[myroot]["vartree"].dbapi
if cleanlist and \
real_vardb._linkmap is not None and \
myopts.get('--depclean-lib-check') != 'n':
@@ -888,7 +889,6 @@ def calc_depclean(settings, trees, ldpath_mtimes,
# Check if any of these packages are the sole providers of libraries
# with consumers that have not been selected for removal. If so, these
# packages and any dependencies need to be added to the graph.
- real_vardb = trees[myroot]["vartree"].dbapi
linkmap = real_vardb._linkmap
consumer_cache = {}
provider_cache = {}