Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/
Date: Wed, 16 Nov 2011 18:44:14
Message-Id: 72f9ddefe49ab1b24196161a07587aac3cdfdd04.zmedico@gentoo
1 commit: 72f9ddefe49ab1b24196161a07587aac3cdfdd04
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 16 18:43:51 2011 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 16 18:43:51 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=72f9ddef
7
8 emerge --quiet-build: don't set PORTAGE_QUIET
9
10 The PORTAGE_QUIET controls lots of stuff that really should only be
11 controlled by --quiet, especially now that --quiet-build is enabled by
12 default. For example, PORTAGE_QUIET supresses the successful checksum
13 display that is produced by emerge --fetchonly.
14
15 ---
16 pym/_emerge/actions.py | 2 +-
17 1 files changed, 1 insertions(+), 1 deletions(-)
18
19 diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py
20 index 4a72ff4..ba2e631 100644
21 --- a/pym/_emerge/actions.py
22 +++ b/pym/_emerge/actions.py
23 @@ -2707,7 +2707,7 @@ def adjust_config(myopts, settings):
24 if "--buildpkg" in myopts:
25 settings.features.add("buildpkg")
26
27 - if "--quiet" in myopts or "--quiet-build" in myopts:
28 + if "--quiet" in myopts:
29 settings["PORTAGE_QUIET"]="1"
30 settings.backup_changes("PORTAGE_QUIET")