projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a68a0a
)
Don't filter USE flags in emerge --info output.
author
Zac Medico
<zmedico@gentoo.org>
Wed, 27 Feb 2008 08:57:06 +0000
(08:57 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Wed, 27 Feb 2008 08:57:06 +0000
(08:57 -0000)
svn path=/main/trunk/; revision=9388
pym/_emerge/__init__.py
patch
|
blob
|
history
diff --git
a/pym/_emerge/__init__.py
b/pym/_emerge/__init__.py
index c34bebf5c5ac374a8b0aec06bfe4612257e4755f..06737ed3ab158a14810966ad99dad7e6e337d781 100644
(file)
--- a/
pym/_emerge/__init__.py
+++ b/
pym/_emerge/__init__.py
@@
-6203,7
+6203,7
@@
def action_info(settings, trees, myopts, myfiles):
if x != "USE":
print '%s="%s"' % (x, settings[x])
else:
- use = set(settings["
PORTAGE_
USE"].split())
+ use = set(settings["USE"].split())
use_expand = settings["USE_EXPAND"].split()
use_expand.sort()
for varname in use_expand: