diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-07 03:30:58 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-07 03:30:58 +0000 |
commit | 47a2d19b90eb2ea532461c851047cf3105c60dab (patch) | |
tree | 8513163f59f24d431f6069f32eb394ff8da37351 /dev-php | |
parent | sync with xmess ebuild (Manifest recommit) (diff) | |
download | gentoo-2-47a2d19b90eb2ea532461c851047cf3105c60dab.tar.gz gentoo-2-47a2d19b90eb2ea532461c851047cf3105c60dab.tar.bz2 gentoo-2-47a2d19b90eb2ea532461c851047cf3105c60dab.zip |
Fix use invocation
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/mod_php/ChangeLog | 5 | ||||
-rw-r--r-- | dev-php/mod_php/mod_php-4.3.7.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/dev-php/mod_php/ChangeLog b/dev-php/mod_php/ChangeLog index 2750242a35b3..6ddec850a7d7 100644 --- a/dev-php/mod_php/ChangeLog +++ b/dev-php/mod_php/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-php/mod_php # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/mod_php/ChangeLog,v 1.148 2004/06/06 00:19:04 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/mod_php/ChangeLog,v 1.149 2004/06/07 03:30:58 agriffis Exp $ + + 06 Jun 2004; Aron Griffis <agriffis@gentoo.org> mod_php-4.3.7.ebuild: + Fix use invocation *mod_php-4.3.7 (05 Jun 2004) diff --git a/dev-php/mod_php/mod_php-4.3.7.ebuild b/dev-php/mod_php/mod_php-4.3.7.ebuild index d67ee06f1e40..3a0879ab7ec1 100644 --- a/dev-php/mod_php/mod_php-4.3.7.ebuild +++ b/dev-php/mod_php/mod_php-4.3.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/mod_php/mod_php-4.3.7.ebuild,v 1.1 2004/06/06 00:19:04 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/mod_php/mod_php-4.3.7.ebuild,v 1.2 2004/06/07 03:30:58 agriffis Exp $ IUSE="${IUSE} apache2" @@ -22,7 +22,7 @@ detectapache() { 1) [ -n "${domsg}" ] && einfo 'Apache1 only detected' ;; 2) [ -n "${domsg}" ] && einfo 'Apache2 only detected';; both) - if [ "`use apache2`" ]; then + if use apache2; then [ -n "${domsg}" ] && einfo "Multiple Apache versions detected, using Apache2 (USE=apache2)" APACHEVER=2 else |