diff options
author | 2012-05-23 03:24:44 +0000 | |
---|---|---|
committer | 2012-05-23 03:24:44 +0000 | |
commit | ca4ada6c324c63406bf9285bbbd827dbdbb6ed29 (patch) | |
tree | 1ed13ea83147d7f43ba07cb5069be49d59d0163e /eclass/apache-2.eclass | |
parent | Fix building with glibc-2.16+. (diff) | |
download | historical-ca4ada6c324c63406bf9285bbbd827dbdbb6ed29.tar.gz historical-ca4ada6c324c63406bf9285bbbd827dbdbb6ed29.tar.bz2 historical-ca4ada6c324c63406bf9285bbbd827dbdbb6ed29.zip |
Avoid using 'make' for installing; use 'mkdir -p' for creating the directories to solve parallel install issues (Apache's script is not safe, but we expect a working mkdir -p). Tested on a 32-way system.
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 570a61850a8f..b4fc37be5ca5 100644 --- a/eclass/apache-2.eclass +++ b/eclass/apache-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.28 2012/03/29 15:35:04 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/apache-2.eclass,v 1.29 2012/05/23 03:24:44 flameeyes Exp $ # @ECLASS: apache-2.eclass # @MAINTAINER: @@ -467,7 +467,7 @@ apache-2_src_configure() { # This function runs `emake install' and generates, installs and adapts the gentoo # specific configuration files found in the tarball apache-2_src_install() { - make DESTDIR="${D}" install || die "make install failed" + emake DESTDIR="${D}" MKINSTALLDIRS="mkdir -p" install || die "make install failed" # install our configuration files keepdir /etc/apache2/vhosts.d |