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 | baadba17c7b0a2506516dfbdaaa2657ba382e134 (patch) | |
tree | 4d099c7da5d73a6ca9073754ca3713eee085e3dd /eclass/apache-2.eclass | |
parent | Adding Francois Bissey's fix for bug 366945 (diff) | |
download | gentoo-2-baadba17c7b0a2506516dfbdaaa2657ba382e134.tar.gz gentoo-2-baadba17c7b0a2506516dfbdaaa2657ba382e134.tar.bz2 gentoo-2-baadba17c7b0a2506516dfbdaaa2657ba382e134.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 |