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/apache-2.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/apache-2.eclass')
-rw-r--r-- | eclass/apache-2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/apache-2.eclass b/eclass/apache-2.eclass index ac58ba4aad0c..ed850f19c09b 100644 --- a/eclass/apache-2.eclass +++ b/eclass/apache-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.24 2010/12/22 10:02:05 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.25 2011/07/08 11:35:01 ssuominen Exp $ EAPI="2" @@ -488,7 +488,7 @@ apache-2_src_install() { use doc && APACHE2_OPTS="${APACHE2_OPTS} -D MANUAL" use ssl && APACHE2_OPTS="${APACHE2_OPTS} -D SSL -D SSL_DEFAULT_VHOST" use suexec && APACHE2_OPTS="${APACHE2_OPTS} -D SUEXEC" - if hasq negotiation ${APACHE2_MODULES} && use apache2_modules_negotiation; then + if has negotiation ${APACHE2_MODULES} && use apache2_modules_negotiation; then APACHE2_OPTS="${APACHE2_OPTS} -D LANGUAGE" fi |