diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-07-08 11:35:01 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-07-08 11:35:01 +0000 |
commit | 3afdef01dce99f4172c8a8642438167e53f6b608 (patch) | |
tree | f9b59cf1fd9a621b1da8670ee9ae1ce334f65444 /eclass/mysql.eclass | |
parent | Adding Francois Bissey's fix for bug 366945 (diff) | |
download | historical-3afdef01dce99f4172c8a8642438167e53f6b608.tar.gz historical-3afdef01dce99f4172c8a8642438167e53f6b608.tar.bz2 historical-3afdef01dce99f4172c8a8642438167e53f6b608.zip |
Convert every instance of hasq to has.
Diffstat (limited to 'eclass/mysql.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 1c712fe78eb8..d41a064e9fbc 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.160 2011/05/07 19:16:48 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.161 2011/07/08 11:35:01 ssuominen Exp $ # @ECLASS: mysql.eclass # @MAINTAINER: @@ -773,7 +773,7 @@ pbxt_src_install() { # create new user and group for mysql # warn about deprecated features mysql_pkg_setup() { - if hasq test ${FEATURES} ; then + if has test ${FEATURES} ; then if ! use minimal ; then if [[ $UID -eq 0 ]]; then eerror "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root." |