emerge: disable --quiet-build by default
authorZac Medico <zmedico@gentoo.org>
Wed, 14 Dec 2011 04:47:22 +0000 (20:47 -0800)
committerZac Medico <zmedico@gentoo.org>
Wed, 14 Dec 2011 04:47:22 +0000 (20:47 -0800)
This reverts the behavior change from commit
0cc174b6fc28feb26ea151d76f794e0ff2c2fa39, since Gentoo's council has
voted to revert it in their 20111213 meeting, as requested on the
gentoo-project mailing list:

http://archives.gentoo.org/gentoo-project/msg_4e282bb4e6ac2611de2a39171a803c48.xml

man/emerge.1
pym/_emerge/Scheduler.py
pym/_emerge/main.py

index b4da69cf9cde3b03216a06dff2f6b1b8be73d2c9..ba29d604393ad4863f1f9189142bb9dc93a0af13 100644 (file)
@@ -609,9 +609,7 @@ log will be automatically displayed on stdout. If there are multiple
 build failures (due to options like \-\-keep\-going or \-\-jobs),
 then the content of the log files will not be displayed, and instead
 the paths of the log files will be displayed together with the
-corresponding die messages. This option is enabled by default. In
-order to disable \-\-quiet\-build by default, set \-\-quiet\-build=n
-in the \fBEMERGE_DEFAULT_OPTS\fR variable in \fBmake.conf\fR(5).
+corresponding die messages.
 Note that interactive packages currently force all build output to
 be displayed on stdout. This issue can be temporarily avoided
 by specifying \fI\-\-accept\-properties=\-interactive\fR.
index 26c3794f089bee7bb93f32dfc83209534af96a43..302b905efd81448f0282592d180f375ebcd92d29 100644 (file)
@@ -412,7 +412,7 @@ class Scheduler(PollScheduler):
                """
                background = (self._max_jobs is True or \
                        self._max_jobs > 1 or "--quiet" in self.myopts \
-                       or self.myopts.get("--quiet-build", "y") == "y") and \
+                       or self.myopts.get("--quiet-build") == "y") and \
                        not bool(self._opts_no_background.intersection(self.myopts))
 
                if background:
index 6acc80e99c3c754d237d649337eeea8e289acdf0..ce73c176473072408b9bee95ddfb714c63624ec9 100644 (file)
@@ -1091,7 +1091,7 @@ def parse_opts(tmpcmdline, silent=False):
                myoptions.quiet = None
 
        if myoptions.quiet_build in true_y:
-               myoptions.quiet_build = None
+               myoptions.quiet_build = 'y'
 
        if myoptions.rebuild_if_new_ver in true_y:
                myoptions.rebuild_if_new_ver = True