Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: lib/_emerge/
Date: Sun, 21 Apr 2019 01:02:26
Message-Id: 1555808521.58fe19ffa3971e6767240392a8f6951899c412bb.zmedico@gentoo
1 commit: 58fe19ffa3971e6767240392a8f6951899c412bb
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 21 01:01:05 2019 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 21 01:02:01 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=58fe19ff
7
8 emerge --info: show per-package FEATURES (bug 553224)
9
10 Bug: https://bugs.gentoo.org/553224
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 lib/_emerge/actions.py | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/lib/_emerge/actions.py b/lib/_emerge/actions.py
17 index e5200d73d..3e32bf8bc 100644
18 --- a/lib/_emerge/actions.py
19 +++ b/lib/_emerge/actions.py
20 @@ -1895,7 +1895,7 @@ def action_info(settings, trees, myopts, myfiles):
21 if mypkgs:
22 # Get our global settings (we only print stuff if it varies from
23 # the current config)
24 - mydesiredvars = [ 'CHOST', 'CFLAGS', 'CXXFLAGS', 'LDFLAGS' ]
25 + mydesiredvars = ['CHOST', 'CFLAGS', 'CXXFLAGS', 'FEATURES', 'LDFLAGS']
26 auxkeys = mydesiredvars + list(vardb._aux_cache_keys)
27 auxkeys.append('DEFINED_PHASES')
28 pkgsettings = portage.config(clone=settings)