commit: 1f8e6fc0aef8335d0a07923232515e28f138eba7
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Thu May 26 13:05:25 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Thu May 26 13:05:25 2016 +0000
URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=1f8e6fc0
bin/make-worldconf: exclude ruby_ USE_EXPAND flags
bin/make-worldconf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/make-worldconf b/bin/make-worldconf
index afedf39..837d628 100755
--- a/bin/make-worldconf
+++ b/bin/make-worldconf
@@ -44,7 +44,7 @@ def useflags(config, p):
# We only include select USE_EXPAND flags. Note becaue of how we match
'abi_',
# for example, will match abi_ppc, abi_mips etc. Hopefully this will not
lead
# to any false hits.
- expand = [ 'kernel_', 'elibc_', 'userland_', 'abi_', 'linguas_', 'python_'
]
+ expand = [ 'kernel_', 'elibc_', 'userland_', 'abi_', 'linguas_',
'python_', 'ruby_' ]
# Remove any selected USE_EXPAND and any EXPAND_HIDDEN flags from IUSE
flags
my_iuse = copy.deepcopy(iuse)