Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/grss:master commit in: bin/
Date: Thu, 26 May 2016 13:03:56
Message-Id: 1464267925.1f8e6fc0aef8335d0a07923232515e28f138eba7.blueness@gentoo
1 commit: 1f8e6fc0aef8335d0a07923232515e28f138eba7
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 26 13:05:25 2016 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Thu May 26 13:05:25 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=1f8e6fc0
7
8 bin/make-worldconf: exclude ruby_ USE_EXPAND flags
9
10 bin/make-worldconf | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/bin/make-worldconf b/bin/make-worldconf
14 index afedf39..837d628 100755
15 --- a/bin/make-worldconf
16 +++ b/bin/make-worldconf
17 @@ -44,7 +44,7 @@ def useflags(config, p):
18 # We only include select USE_EXPAND flags. Note becaue of how we match 'abi_',
19 # for example, will match abi_ppc, abi_mips etc. Hopefully this will not lead
20 # to any false hits.
21 - expand = [ 'kernel_', 'elibc_', 'userland_', 'abi_', 'linguas_', 'python_' ]
22 + expand = [ 'kernel_', 'elibc_', 'userland_', 'abi_', 'linguas_', 'python_', 'ruby_' ]
23
24 # Remove any selected USE_EXPAND and any EXPAND_HIDDEN flags from IUSE flags
25 my_iuse = copy.deepcopy(iuse)