diff options
Diffstat (limited to 'pym')
-rw-r--r-- | pym/_emerge/actions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index eb8df9cd3..84278d47b 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -910,7 +910,7 @@ def calc_depclean(settings, trees, ldpath_mtimes, for lib, lib_consumers in list(consumers.items()): for consumer_file in list(lib_consumers): - if pkg_dblink.isowner(consumer_file, myroot): + if pkg_dblink.isowner(consumer_file): lib_consumers.remove(consumer_file) if not lib_consumers: del consumers[lib] |