diff options
author | Michał Górny <mgorny@gentoo.org> | 2016-03-02 17:14:18 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2016-03-02 17:14:18 +0100 |
commit | 71b88ba857a4101e1e1993ba62d2d0cc50aff6e5 (patch) | |
tree | 3b33aa7434516110eeb9328ea554f01a55237bbd | |
parent | dev-binpkg/pypy3: Update (diff) | |
download | mgorny-71b88ba857a4101e1e1993ba62d2d0cc50aff6e5.tar.gz mgorny-71b88ba857a4101e1e1993ba62d2d0cc50aff6e5.tar.bz2 mgorny-71b88ba857a4101e1e1993ba62d2d0cc50aff6e5.zip |
dev-binpkg/pypy3: Fix sse2 flag
-rw-r--r-- | dev-binpkg/pypy3/pypy3-2.4.0.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-binpkg/pypy3/pypy3-2.4.0.ebuild b/dev-binpkg/pypy3/pypy3-2.4.0.ebuild index b44ac88..b378f4d 100644 --- a/dev-binpkg/pypy3/pypy3-2.4.0.ebuild +++ b/dev-binpkg/pypy3/pypy3-2.4.0.ebuild @@ -67,7 +67,7 @@ pkg_setup() { # common denominator between Intel & AMD cpu='x86-64' elif use x86; then - if use sse2; then + if use cpu_flags_x86_sse2; then # lowest with SSE2 cpu='pentium-m' else |