diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-11-28 09:47:26 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-11-28 09:47:26 +0000 |
commit | 04205b21206ce3e6d37c6aff60b2d6f0bccb1cb1 (patch) | |
tree | 4ae97ab0aee55b0084ddca18769e9ae2556460ed /sci-mathematics | |
parent | old (diff) | |
download | gentoo-2-04205b21206ce3e6d37c6aff60b2d6f0bccb1cb1.tar.gz gentoo-2-04205b21206ce3e6d37c6aff60b2d6f0bccb1cb1.tar.bz2 gentoo-2-04205b21206ce3e6d37c6aff60b2d6f0bccb1cb1.zip |
Avoid parallel make failure
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/gmp-ecm/ChangeLog | 5 | ||||
-rw-r--r-- | sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r3.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sci-mathematics/gmp-ecm/ChangeLog b/sci-mathematics/gmp-ecm/ChangeLog index d4b1788882dd..ea7253a42697 100644 --- a/sci-mathematics/gmp-ecm/ChangeLog +++ b/sci-mathematics/gmp-ecm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-mathematics/gmp-ecm # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gmp-ecm/ChangeLog,v 1.4 2012/11/28 08:11:17 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gmp-ecm/ChangeLog,v 1.5 2012/11/28 09:47:26 patrick Exp $ + + 28 Nov 2012; Patrick Lauer <patrick@gentoo.org> gmp-ecm-6.4.3-r3.ebuild: + Avoid parallel make failure *gmp-ecm-6.4.3-r3 (28 Nov 2012) diff --git a/sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r3.ebuild b/sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r3.ebuild index b576cd4b49f0..d14072908a72 100644 --- a/sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r3.ebuild +++ b/sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r3.ebuild @@ -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/sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r3.ebuild,v 1.1 2012/11/28 08:11:17 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gmp-ecm/gmp-ecm-6.4.3-r3.ebuild,v 1.2 2012/11/28 09:47:26 patrick Exp $ EAPI=4 DESCRIPTION="Elliptic Curve Method for Integer Factorization" @@ -34,13 +34,13 @@ src_compile() { if use custom-tune; then use amd64 && cd x86_64 use x86 && cd pentium4 - emake || die # build libecm/libmulredc.la + emake -j1 || die # build libecm/libmulredc.la cd .. && make bench_mulredc || die sed -i -e 's:#define TUNE_MULREDC_TABLE://#define TUNE_MULREDC_TABLE:g' `readlink ecm-params.h` || die sed -i -e 's:#define TUNE_SQRREDC_TABLE://#define TUNE_SQRREDC_TABLE:g' `readlink ecm-params.h` || die ./bench_mulredc | tail -n 4 >> `readlink ecm-params.h` || die fi - emake || die + emake -j1 || die } src_install() { |