From: Zac Medico Date: Fri, 28 Sep 2007 06:41:36 +0000 (-0000) Subject: Bug #192706 - Do not print a summary at the end of --depclean if X-Git-Tag: v2.1.3.16~95 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=49eab10f97a139937483356c1e391dd12c1e6e1c;p=portage.git Bug #192706 - Do not print a summary at the end of --depclean if there is nothing to clean and --quiet is enabled. (trunk r7838) svn path=/main/branches/2.1.2/; revision=7868 --- diff --git a/bin/emerge b/bin/emerge index c8d5f0734..093496ced 100755 --- a/bin/emerge +++ b/bin/emerge @@ -5709,6 +5709,9 @@ def action_depclean(settings, trees, ldpath_mtimes, if action == "prune": return + if not cleanlist and "--quiet" in myopts: + return + print "Packages installed: "+str(len(myvarlist)) print "Packages in world: "+str(len(worldlist)) print "Packages in system: "+str(len(syslist))