summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2008-10-29 11:31:25 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2008-10-29 11:31:25 +0000
commit088f5f76bec2eb52a426c71c46b749bb2be31429 (patch)
treeb89f1fb0d0046a0a127f54a018d1bdcb6499b58a /dev-lang
parentRun automake or the asneeded patch will cause maintainer-mode rebuilds (which... (diff)
downloadgentoo-2-088f5f76bec2eb52a426c71c46b749bb2be31429.tar.gz
gentoo-2-088f5f76bec2eb52a426c71c46b749bb2be31429.tar.bz2
gentoo-2-088f5f76bec2eb52a426c71c46b749bb2be31429.zip
Force -j1 during install, see bug #244872.
(Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo-r1 x86_64)
Diffstat (limited to 'dev-lang')
-rw-r--r--dev-lang/mozart/ChangeLog5
-rw-r--r--dev-lang/mozart/mozart-1.4.0.ebuild5
2 files changed, 7 insertions, 3 deletions
diff --git a/dev-lang/mozart/ChangeLog b/dev-lang/mozart/ChangeLog
index efbd91b1abd1..bdfe61eb1cf9 100644
--- a/dev-lang/mozart/ChangeLog
+++ b/dev-lang/mozart/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/mozart
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v 1.21 2008/08/26 07:33:11 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v 1.22 2008/10/29 11:31:25 flameeyes Exp $
+
+ 29 Oct 2008; Diego Pettenò <flameeyes@gentoo.org> mozart-1.4.0.ebuild:
+ Force -j1 during install, see bug #244872.
26 Aug 2008; <keri@gentoo.org> +files/mozart-1.4.0-dss-libpath.patch,
mozart-1.4.0.ebuild:
diff --git a/dev-lang/mozart/mozart-1.4.0.ebuild b/dev-lang/mozart/mozart-1.4.0.ebuild
index 189190f4374f..749d4fdc0a14 100644
--- a/dev-lang/mozart/mozart-1.4.0.ebuild
+++ b/dev-lang/mozart/mozart-1.4.0.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/dev-lang/mozart/mozart-1.4.0.ebuild,v 1.3 2008/08/26 07:33:11 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0.ebuild,v 1.4 2008/10/29 11:31:25 flameeyes Exp $
inherit elisp-common eutils
@@ -81,7 +81,8 @@ src_test() {
}
src_install() {
- emake \
+ # Parallel make install issues, bug #244872
+ emake -j1 \
PREFIX="${D}"/usr/lib/mozart \
ELISPDIR="${D}${SITELISP}/${PN}" \
install || die "emake install failed"