diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2007-12-31 23:46:24 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2007-12-31 23:46:24 +0000 |
commit | 5dc178d764768c25592bdfd7a7105e975e629762 (patch) | |
tree | 57fc717e8f5087a5b04fee629f1df70d947ed010 /eclass | |
parent | Marked ~ppc for bug #203621. (diff) | |
download | historical-5dc178d764768c25592bdfd7a7105e975e629762.tar.gz historical-5dc178d764768c25592bdfd7a7105e975e629762.tar.bz2 historical-5dc178d764768c25592bdfd7a7105e975e629762.zip |
fix #202722
Diffstat (limited to '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 a311968acda8..79b2cf8db93a 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.4 2007/12/20 15:53:19 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.5 2007/12/31 23:46:24 hollow Exp $ # @ECLASS: apache-2 # @MAINTAINER: apache-devs@gentoo.org @@ -452,7 +452,7 @@ apache-2_src_compile() { # This function runs emake install and generates, install and adapts the gentoo # specific configuration files found in the tarball apache-2_src_install() { - emake DESTDIR="${D}" install || die "emake install failed" + make DESTDIR="${D}" install || die "make install failed" # install our configuration files keepdir /etc/apache2/vhosts.d |