diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-07-16 02:38:53 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-07-16 02:38:53 +0000 |
commit | c7bd931aca83453b79098382aaf00c1cd270fce4 (patch) | |
tree | eb096777b2c1abc945963b0375b0dfc327f4fbe9 | |
parent | b05931262c4687360325304b47a44bb6e5760e50 (diff) | |
download | portage-c7bd931aca83453b79098382aaf00c1cd270fce4.tar.gz portage-c7bd931aca83453b79098382aaf00c1cd270fce4.tar.bz2 portage-c7bd931aca83453b79098382aaf00c1cd270fce4.zip |
Show LDFLAGS in emerge --info <pkg> output. Thanks to dirtyepic for this
patch.
svn path=/main/trunk/; revision=11070
-rw-r--r-- | pym/_emerge/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index abcfc8ac5..976ddcbef 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -10920,7 +10920,7 @@ def action_info(settings, trees, myopts, myfiles): if mypkgs: # Get our global settings (we only print stuff if it varies from # the current config) - mydesiredvars = [ 'CHOST', 'CFLAGS', 'CXXFLAGS' ] + mydesiredvars = [ 'CHOST', 'CFLAGS', 'CXXFLAGS', 'LDFLAGS' ] auxkeys = mydesiredvars + [ "USE", "IUSE"] global_vals = {} pkgsettings = portage.config(clone=settings) |