diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-10-14 19:23:54 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-10-14 19:23:54 +0000 |
commit | c6e46afd89fdd311a422ca86eb447c701faf4a14 (patch) | |
tree | 5c94599c9ab29747602b32d650ba361611c8c61b /app-accessibility | |
parent | stable ppc, bug 338340 (diff) | |
download | gentoo-2-c6e46afd89fdd311a422ca86eb447c701faf4a14.tar.gz gentoo-2-c6e46afd89fdd311a422ca86eb447c701faf4a14.tar.bz2 gentoo-2-c6e46afd89fdd311a422ca86eb447c701faf4a14.zip |
QA: fix kernel_is call that could never have worked.
(Portage version: 2.2_rc96/cvs/Linux x86_64)
Diffstat (limited to 'app-accessibility')
-rw-r--r-- | app-accessibility/speakup/ChangeLog | 6 | ||||
-rw-r--r-- | app-accessibility/speakup/speakup-3.1.6.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/app-accessibility/speakup/ChangeLog b/app-accessibility/speakup/ChangeLog index 2aec27d13ab4..4a857188c38a 100644 --- a/app-accessibility/speakup/ChangeLog +++ b/app-accessibility/speakup/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-accessibility/speakup # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speakup/ChangeLog,v 1.46 2010/10/13 21:10:23 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speakup/ChangeLog,v 1.47 2010/10/14 19:23:54 flameeyes Exp $ + + 14 Oct 2010; Diego E. Pettenò <flameeyes@gentoo.org> + speakup-3.1.6.ebuild: + QA: fix kernel_is call that could never have worked. *speakup-3.1.6 (13 Oct 2010) diff --git a/app-accessibility/speakup/speakup-3.1.6.ebuild b/app-accessibility/speakup/speakup-3.1.6.ebuild index 5fb1a3d0273e..f02ccbc5f241 100644 --- a/app-accessibility/speakup/speakup-3.1.6.ebuild +++ b/app-accessibility/speakup/speakup-3.1.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speakup/speakup-3.1.6.ebuild,v 1.1 2010/10/13 21:10:23 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speakup/speakup-3.1.6.ebuild,v 1.2 2010/10/14 19:23:54 flameeyes Exp $ EAPI="2" @@ -36,7 +36,7 @@ BUILD_TARGETS="clean all" src_prepare() { use modules && cmd=die || cmd=ewarn - if kernel_is lt 2 6 26 -o kernel_is gt 2 6 35; then + if kernel_is lt 2 6 26 || kernel_is gt 2 6 35; then $cmd "Speakup ${PV} requires linux 2.6.26 through 2.6.35" fi } |