Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/mgorny:master commit in: dev-binpkg/pypy3/
Date: Wed, 02 Mar 2016 16:14:34
Message-Id: 1456935258.71b88ba857a4101e1e1993ba62d2d0cc50aff6e5.mgorny@gentoo
1 commit: 71b88ba857a4101e1e1993ba62d2d0cc50aff6e5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 2 16:14:18 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 2 16:14:18 2016 +0000
6 URL: https://gitweb.gentoo.org/dev/mgorny.git/commit/?id=71b88ba8
7
8 dev-binpkg/pypy3: Fix sse2 flag
9
10 dev-binpkg/pypy3/pypy3-2.4.0.ebuild | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/dev-binpkg/pypy3/pypy3-2.4.0.ebuild b/dev-binpkg/pypy3/pypy3-2.4.0.ebuild
14 index b44ac88..b378f4d 100644
15 --- a/dev-binpkg/pypy3/pypy3-2.4.0.ebuild
16 +++ b/dev-binpkg/pypy3/pypy3-2.4.0.ebuild
17 @@ -67,7 +67,7 @@ pkg_setup() {
18 # common denominator between Intel & AMD
19 cpu='x86-64'
20 elif use x86; then
21 - if use sse2; then
22 + if use cpu_flags_x86_sse2; then
23 # lowest with SSE2
24 cpu='pentium-m'
25 else