aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2016-05-26 09:05:25 -0400
committerAnthony G. Basile <blueness@gentoo.org>2016-05-26 09:05:25 -0400
commit1f8e6fc0aef8335d0a07923232515e28f138eba7 (patch)
treed71f198fbe16a08a8e828d3131ce1df8e7ecebe4
parentREADME.md: update (diff)
downloadgrss-1f8e6fc0.tar.gz
grss-1f8e6fc0.tar.bz2
grss-1f8e6fc0.zip
bin/make-worldconf: exclude ruby_ USE_EXPAND flags
-rwxr-xr-xbin/make-worldconf2
1 files changed, 1 insertions, 1 deletions
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)