Gentoo Archives: gentoo-commits

From: Thomas Sachau <tommy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:multilib commit in: pym/portage/package/ebuild/
Date: Sun, 08 Jul 2012 10:25:42
Message-Id: 1341743122.b156a9884fd820a39841ee183ba696e7b174d5c7.tommy@gentoo
1 commit: b156a9884fd820a39841ee183ba696e7b174d5c7
2 Author: Thomas Sachau <tommy <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 8 10:25:22 2012 +0000
4 Commit: Thomas Sachau <tommy <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 8 10:25:22 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=b156a988
7
8 Fix detection of enabled ABIs via MULTILIB_ABI=...
9
10 ---
11 pym/portage/package/ebuild/config.py | 2 ++
12 1 files changed, 2 insertions(+), 0 deletions(-)
13
14 diff --git a/pym/portage/package/ebuild/config.py b/pym/portage/package/ebuild/config.py
15 index 21313b5..b349ca3 100644
16 --- a/pym/portage/package/ebuild/config.py
17 +++ b/pym/portage/package/ebuild/config.py
18 @@ -2008,6 +2008,8 @@ class config(object):
19
20 # Do the USE calculation last because it depends on USE_EXPAND.
21 use_expand = self.get("USE_EXPAND", "").split()
22 + if 'force-multilib' in self.get("FEATURES", ""):
23 + use_expand.append("MULTILIB_ABI")
24 use_expand_dict = self._use_expand_dict
25 use_expand_dict.clear()
26 for k in use_expand: