diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2006-07-15 23:24:47 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2006-07-15 23:24:47 +0000 |
commit | 20e910434a432eee49c03959fe9b000fd8620222 (patch) | |
tree | 8681b98981858a8a35ffa5cbf0954994703998af /sci-misc | |
parent | New version, lots of changes, bugzilla be ready\! (diff) | |
download | gentoo-2-20e910434a432eee49c03959fe9b000fd8620222.tar.gz gentoo-2-20e910434a432eee49c03959fe9b000fd8620222.tar.bz2 gentoo-2-20e910434a432eee49c03959fe9b000fd8620222.zip |
Forced -j1, should fix bug 136374.
(Portage version: 2.1.1_pre2-r8)
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/boinc/ChangeLog | 5 | ||||
-rw-r--r-- | sci-misc/boinc/boinc-5.5.6.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sci-misc/boinc/ChangeLog b/sci-misc/boinc/ChangeLog index 18d7b88d34d6..304af23010cc 100644 --- a/sci-misc/boinc/ChangeLog +++ b/sci-misc/boinc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-misc/boinc # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v 1.24 2006/07/15 20:31:13 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v 1.25 2006/07/15 23:24:47 cryos Exp $ + + 15 Jul 2006; Marcus D. Hanwell <cryos@gentoo.org> boinc-5.5.6.ebuild: + Forced -j1, should fix bug 136374. 15 Jul 2006; Marcus D. Hanwell <cryos@gentoo.org> boinc-5.2.14.ebuild, boinc-5.5.6.ebuild: diff --git a/sci-misc/boinc/boinc-5.5.6.ebuild b/sci-misc/boinc/boinc-5.5.6.ebuild index 4fc1ffa66f8b..2c3ab901ca7c 100644 --- a/sci-misc/boinc/boinc-5.5.6.ebuild +++ b/sci-misc/boinc/boinc-5.5.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-5.5.6.ebuild,v 1.3 2006/07/15 20:31:13 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-5.5.6.ebuild,v 1.4 2006/07/15 23:24:47 cryos Exp $ inherit eutils @@ -63,7 +63,8 @@ src_compile() { # Make it link to the compiled libs, not the installed ones sed -e "s|LDFLAGS = |LDFLAGS = -L../lib |g" -i */Makefile || \ die "sed failed" - emake || die "emake failed" + # Force -j1 - bug 136374. + emake -j1 || die "emake failed" } src_install() { |