summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2008-12-19 00:51:49 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2008-12-19 00:51:49 +0000
commit69240b1d2d72aaa249b63ddb85b6db3e6794aed7 (patch)
treeaadb2ba69a9ebd4f218c98caceb8a87fe3666b70 /sys-devel/distcc
parentAdd more stuff to ChangeLog. (diff)
downloadgentoo-2-69240b1d2d72aaa249b63ddb85b6db3e6794aed7.tar.gz
gentoo-2-69240b1d2d72aaa249b63ddb85b6db3e6794aed7.tar.bz2
gentoo-2-69240b1d2d72aaa249b63ddb85b6db3e6794aed7.zip
Added -j1 to emake install, bug #249695.
(Portage version: 2.1.6/cvs/Linux 2.6.27-gentoo-r4 x86_64)
Diffstat (limited to 'sys-devel/distcc')
-rw-r--r--sys-devel/distcc/ChangeLog5
-rw-r--r--sys-devel/distcc/distcc-3.0-r4.ebuild5
2 files changed, 7 insertions, 3 deletions
diff --git a/sys-devel/distcc/ChangeLog b/sys-devel/distcc/ChangeLog
index 41fe7f65de0e..1d708229e07b 100644
--- a/sys-devel/distcc/ChangeLog
+++ b/sys-devel/distcc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-devel/distcc
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/ChangeLog,v 1.192 2008/12/14 16:43:11 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/ChangeLog,v 1.193 2008/12/19 00:51:49 matsuu Exp $
+
+ 19 Dec 2008; MATSUU Takuto <matsuu@gentoo.org> distcc-3.0-r4.ebuild:
+ Added -j1 to emake install, bug #249695.
14 Dec 2008; Raúl Porcel <armin76@gentoo.org> distcc-3.0-r4.ebuild:
arm/ia64/sh/x86 stable wrt #249695
diff --git a/sys-devel/distcc/distcc-3.0-r4.ebuild b/sys-devel/distcc/distcc-3.0-r4.ebuild
index 923170df1e69..b0f4c691e778 100644
--- a/sys-devel/distcc/distcc-3.0-r4.ebuild
+++ b/sys-devel/distcc/distcc-3.0-r4.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/distcc-3.0-r4.ebuild,v 1.9 2008/12/14 16:43:11 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/distcc/distcc-3.0-r4.ebuild,v 1.10 2008/12/19 00:51:49 matsuu Exp $
inherit eutils fdo-mime flag-o-matic multilib toolchain-funcs
@@ -76,7 +76,8 @@ src_compile() {
}
src_install() {
- emake DESTDIR="${D}" install || die
+ # In rare cases, parallel make install failed, bug #249695
+ emake -j1 DESTDIR="${D}" install || die
dobin "${FILESDIR}/${PV}/distcc-config"