diff options
author | Christian Heim <phreak@gentoo.org> | 2007-05-24 20:14:16 +0000 |
---|---|---|
committer | Christian Heim <phreak@gentoo.org> | 2007-05-24 20:14:16 +0000 |
commit | 8b46343080b7c6db07d936ddd2ffdbcdfb7902c7 (patch) | |
tree | 2e58dea6d5045655824c4f991d6e60a69707fa9f /www-apache | |
parent | Stable on ppc; bug #178510. (diff) | |
download | gentoo-2-8b46343080b7c6db07d936ddd2ffdbcdfb7902c7.tar.gz gentoo-2-8b46343080b7c6db07d936ddd2ffdbcdfb7902c7.tar.bz2 gentoo-2-8b46343080b7c6db07d936ddd2ffdbcdfb7902c7.zip |
Fix the Makefile to use the proper location for our builddir (/usr/local/apache2 vs. /usr/$(get_libdir)/apache2), thanks to Samir M. Nassar <bugzilla at steamedpenguin.com> in #179597.
(Portage version: 2.1.2.7)
Diffstat (limited to 'www-apache')
-rw-r--r-- | www-apache/mod_fcgid/ChangeLog | 7 | ||||
-rw-r--r-- | www-apache/mod_fcgid/mod_fcgid-2.1-r1.ebuild | 7 |
2 files changed, 11 insertions, 3 deletions
diff --git a/www-apache/mod_fcgid/ChangeLog b/www-apache/mod_fcgid/ChangeLog index 84708f9a7ab5..7e6252a7f97f 100644 --- a/www-apache/mod_fcgid/ChangeLog +++ b/www-apache/mod_fcgid/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-apache/mod_fcgid # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_fcgid/ChangeLog,v 1.28 2007/05/23 20:12:11 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_fcgid/ChangeLog,v 1.29 2007/05/24 20:14:16 phreak Exp $ + + 24 May 2007; Christian Heim <phreak@gentoo.org> mod_fcgid-2.1-r1.ebuild: + Fix the Makefile to use the proper location for our builddir + (/usr/local/apache2 vs. /usr/$(get_libdir)/apache2), thanks to Samir M. + Nassar <bugzilla at steamedpenguin.com> in #179597. *mod_fcgid-2.1-r1 (23 May 2007) diff --git a/www-apache/mod_fcgid/mod_fcgid-2.1-r1.ebuild b/www-apache/mod_fcgid/mod_fcgid-2.1-r1.ebuild index bcf9dcbffe33..e6991c28b48c 100644 --- a/www-apache/mod_fcgid/mod_fcgid-2.1-r1.ebuild +++ b/www-apache/mod_fcgid/mod_fcgid-2.1-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_fcgid/mod_fcgid-2.1-r1.ebuild,v 1.1 2007/05/23 20:12:11 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_fcgid/mod_fcgid-2.1-r1.ebuild,v 1.2 2007/05/24 20:14:16 phreak Exp $ -inherit apache-module eutils +inherit apache-module eutils multilib KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" @@ -35,6 +35,9 @@ src_unpack() { cd "${S}" epatch "${FILESDIR}"/${P}-apr_shm_remove.patch + + # Fix the stupid Makefile, assuming our builddir is in /usr/local + sed -e "s,^top_dir.*=.*,top_dir = /usr/$(get_libdir)/apache2," -i Makefile } src_install() { |