diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass index 4e9662e..37f5b3e 100644 --- a/eclass/mysql.eclass +++ b/eclass/mysql.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.127 2010/02/01 01:07:08 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.126 2010/01/31 05:47:21 robbat2 Exp $ # @ECLASS: mysql.eclass # @MAINTAINER: @@ -475,7 +475,7 @@ configure_51() { myconf="${myconf} --without-pstack" use max-idx-128 && myconf="${myconf} --with-max-indexes=128" - # 5.1 introduces a new way to manage storage engines (#plugins) + # 5.1 introduces a new way to manage storage engines (plugins) # like configuration=none local plugins="csv,myisam,myisammrg,heap" if use extraengine && ! use dynamicplugins ; then @@ -501,11 +501,11 @@ configure_51() { for str in ${STORAGE_IUSE} ; do if use ${str} ; then - # dotn confuse autoconf by specifiing the plugins to or more times + # don't confuse autoconf by specifying the plugins to or more times if ! use dynamicplugins ; then [[ -d storage/${str} ]] && plugins="${plugins},${str}" fi - # suppres error message + # suppress error message [[ ${str} = "innodb" ]] && str="innobase" [[ ${str} = "xtradb" ]] && str="innobase" [[ ! -d storage/${str} ]] && eerror "use ${str} but no ${str} plugin"