From ef3600891f52f63578f9bd84c59fd1d382a0e079 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 12 Aug 2016 15:32:35 +0100 Subject: [PATCH] improve portage backend, so that it removes ALL calamares deps --- src/modules/packages/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/packages/main.py b/src/modules/packages/main.py index 37cba1967..943b032cc 100644 --- a/src/modules/packages/main.py +++ b/src/modules/packages/main.py @@ -87,6 +87,7 @@ class PackageManager: check_target_env_call(["pacman", "-Rs", "--noconfirm"] + pkgs) elif self.backend == "portage": check_target_env_call(["emerge", "-C"] + pkgs) + check_target_env_call(["emerge", "--depclean", "-q"]) elif self.backend == "entropy": check_target_env_call(["equo", "rm"] + pkgs)