diff options
-rw-r--r-- | pym/emerge/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pym/emerge/__init__.py b/pym/emerge/__init__.py index 16face65c..64706cd99 100644 --- a/pym/emerge/__init__.py +++ b/pym/emerge/__init__.py @@ -5527,6 +5527,9 @@ def action_depclean(settings, trees, ldpath_mtimes, elif "--verbose" in myopts: show_parents(pkg) elif action == "prune": + # Prune really uses all installed instead of world. It's not a real + # reverse dependency so don't display it as such. + graph.remove("world") for atom in args_set: for pkg in vardb.match(atom): if not fakedb.cpv_exists(pkg): |