diff options
author | Luca Longinotti <chtekk@gentoo.org> | 2006-10-20 13:14:21 +0000 |
---|---|---|
committer | Luca Longinotti <chtekk@gentoo.org> | 2006-10-20 13:14:21 +0000 |
commit | 369c37336abf602fd172d91e5c8796cc3e317ef4 (patch) | |
tree | 5c1c0878003cd432e4fe076c8e8358f34b6410d3 /eclass | |
parent | Marking sparc, amd64 stable; cleaning out old ebuilds (diff) | |
download | gentoo-2-369c37336abf602fd172d91e5c8796cc3e317ef4.tar.gz gentoo-2-369c37336abf602fd172d91e5c8796cc3e317ef4.tar.bz2 gentoo-2-369c37336abf602fd172d91e5c8796cc3e317ef4.zip |
Fix raid support: not available in 5.0 and up.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mysql.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass index 6c9ac39be3b0..779fe8a834f1 100644 --- a/eclass/mysql.eclass +++ b/eclass/mysql.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.37 2006/10/20 12:56:30 vivo Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.38 2006/10/20 13:14:21 chtekk Exp $ # Author: Francesco Riosa <vivo@gentoo.org> # Maintainer: Luca Longinotti <chtekk@gentoo.org> @@ -203,7 +203,7 @@ configure_40_41_50() { myconf="${myconf} --with-extra-tools" myconf="${myconf} --with-innodb" myconf="${myconf} --without-readline" - mysql_version_is_at_least "5.00.00.00" && myconf="${myconf} $(use_with raid)" + mysql_version_is_at_least "5.00.00.00" || myconf="${myconf} $(use_with raid)" if useq "ssl" ; then # --with-vio is not needed anymore, it's on by default and |