diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2007-09-10 12:03:29 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2007-09-10 12:03:29 +0000 |
commit | 9e2b2bf34e991ed018bacce22ed4f1d2decfc8ec (patch) | |
tree | 43b4d1e88bd2994b99a341d080f6bcd12d148bd4 /www-servers/apache | |
parent | alpha/ia64 stable wrt security #191912 (diff) | |
download | gentoo-2-9e2b2bf34e991ed018bacce22ed4f1d2decfc8ec.tar.gz gentoo-2-9e2b2bf34e991ed018bacce22ed4f1d2decfc8ec.tar.bz2 gentoo-2-9e2b2bf34e991ed018bacce22ed4f1d2decfc8ec.zip |
fix #191967
(Portage version: 2.1.3.7)
Diffstat (limited to 'www-servers/apache')
-rw-r--r-- | www-servers/apache/ChangeLog | 5 | ||||
-rw-r--r-- | www-servers/apache/apache-2.2.6.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/www-servers/apache/ChangeLog b/www-servers/apache/ChangeLog index fcedb151cfb2..0b42a8978f4a 100644 --- a/www-servers/apache/ChangeLog +++ b/www-servers/apache/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-servers/apache # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.26 2007/09/09 16:15:14 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.27 2007/09/10 12:03:29 hollow Exp $ + + 10 Sep 2007; Benedikt Böhm <hollow@gentoo.org> apache-2.2.6.ebuild: + fix #191967 09 Sep 2007; Markus Rothe <corsair@gentoo.org> apache-2.2.6.ebuild: Stable on ppc64; bug #186219 diff --git a/www-servers/apache/apache-2.2.6.ebuild b/www-servers/apache/apache-2.2.6.ebuild index 653db7bd6f48..e59225c76bdf 100644 --- a/www-servers/apache/apache-2.2.6.ebuild +++ b/www-servers/apache/apache-2.2.6.ebuild @@ -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/www-servers/apache/apache-2.2.6.ebuild,v 1.7 2007/09/09 16:15:14 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/apache-2.2.6.ebuild,v 1.8 2007/09/10 12:03:29 hollow Exp $ inherit eutils flag-o-matic multilib autotools @@ -236,7 +236,7 @@ src_install () { if ! use static-modules ; then load_module="" moddir="${D}/usr/$(get_libdir)/apache2/modules" - for m in ${mods} ; do + for m in $(echo ${mods}|tr ' ' '\n'|sort -u) ; do endid="no" if [[ -e "${moddir}/mod_${m}.so" ]] ; then |