diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2012-04-24 21:37:20 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2012-04-24 21:37:20 +0000 |
commit | 26bf59522a08f67f8bbea7dacdfd0a755ea43ac9 (patch) | |
tree | 736247deee57bf9ce1a1a8743b500185a442f10a /www-plugins | |
parent | Version bump (diff) | |
download | gentoo-2-26bf59522a08f67f8bbea7dacdfd0a755ea43ac9.tar.gz gentoo-2-26bf59522a08f67f8bbea7dacdfd0a755ea43ac9.tar.bz2 gentoo-2-26bf59522a08f67f8bbea7dacdfd0a755ea43ac9.zip |
Unbreak the check for SSE2. Beside, should this actually be performed for AMD64?
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Diffstat (limited to 'www-plugins')
-rw-r--r-- | www-plugins/adobe-flash/ChangeLog | 7 | ||||
-rw-r--r-- | www-plugins/adobe-flash/adobe-flash-11.2.202.228.ebuild | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/www-plugins/adobe-flash/ChangeLog b/www-plugins/adobe-flash/ChangeLog index 9862887e827e..9f831749d66b 100644 --- a/www-plugins/adobe-flash/ChangeLog +++ b/www-plugins/adobe-flash/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-plugins/adobe-flash # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.127 2012/04/24 20:12:46 lack Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.128 2012/04/24 21:37:20 flameeyes Exp $ + + 24 Apr 2012; Diego E. Pettenò <flameeyes@gentoo.org> + adobe-flash-11.2.202.228.ebuild: + Unbreak the check for SSE2. Beside, should this actually be performed for + AMD64? 24 Apr 2012; Jim Ramsay <jim_ramsay@gentoo.org> adobe-flash-11.2.202.228.ebuild, metadata.xml: diff --git a/www-plugins/adobe-flash/adobe-flash-11.2.202.228.ebuild b/www-plugins/adobe-flash/adobe-flash-11.2.202.228.ebuild index 79aceb5f34d0..cc0bec3520d8 100644 --- a/www-plugins/adobe-flash/adobe-flash-11.2.202.228.ebuild +++ b/www-plugins/adobe-flash/adobe-flash-11.2.202.228.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.2.202.228.ebuild,v 1.5 2012/04/24 20:12:46 lack Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.2.202.228.ebuild,v 1.6 2012/04/24 21:37:20 flameeyes Exp $ EAPI=4 inherit nsplugins multilib toolchain-funcs versionator @@ -63,7 +63,7 @@ any_cpu_missing_flag() { } pkg_pretend() { - if any_cpu_missing_flag 'BAADsse2'; then + if any_cpu_missing_flag 'sse2'; then eerror "This version of adobe-flash requires a CPU that supports the" eerror "SSE2 instruction set, and at least one of your CPUs does not" eerror "support this feature." |