emerge --quiet-build: don't set PORTAGE_QUIET
authorZac Medico <zmedico@gentoo.org>
Wed, 16 Nov 2011 18:43:51 +0000 (10:43 -0800)
committerZac Medico <zmedico@gentoo.org>
Wed, 16 Nov 2011 18:43:51 +0000 (10:43 -0800)
The PORTAGE_QUIET controls lots of stuff that really should only be
controlled by --quiet, especially now that --quiet-build is enabled by
default. For example, PORTAGE_QUIET supresses the successful checksum
display that is produced by emerge --fetchonly.

pym/_emerge/actions.py

index 4a72ff471752f9135a07160a7ef6c2e97c9b6ecf..ba2e631f2f6be1f89fd3290e8a016290e44b5b93 100644 (file)
@@ -2707,7 +2707,7 @@ def adjust_config(myopts, settings):
        if "--buildpkg" in myopts:
                settings.features.add("buildpkg")
 
-       if "--quiet" in myopts or "--quiet-build" in myopts:
+       if "--quiet" in myopts:
                settings["PORTAGE_QUIET"]="1"
                settings.backup_changes("PORTAGE_QUIET")