diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-04-10 07:09:19 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-04-10 07:09:19 +0000 |
commit | e6af1b04f2f9a4c212f9fc97a94e58f9102261d7 (patch) | |
tree | 24d78210526688066b7e67d115cc6ef0715b05b2 /dev-lang/R | |
parent | Adding missing makedepend dep (diff) | |
download | gentoo-2-e6af1b04f2f9a4c212f9fc97a94e58f9102261d7.tar.gz gentoo-2-e6af1b04f2f9a4c212f9fc97a94e58f9102261d7.tar.bz2 gentoo-2-e6af1b04f2f9a4c212f9fc97a94e58f9102261d7.zip |
Force emake install to -j1 to avoid spurious failures #465352
(Portage version: 2.2.0_alpha171/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-lang/R')
-rw-r--r-- | dev-lang/R/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/R/R-3.0.0.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/dev-lang/R/ChangeLog b/dev-lang/R/ChangeLog index 16000479f55a..6b19863445b2 100644 --- a/dev-lang/R/ChangeLog +++ b/dev-lang/R/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/R # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/ChangeLog,v 1.214 2013/04/04 22:10:01 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/ChangeLog,v 1.215 2013/04/10 07:09:19 patrick Exp $ + + 10 Apr 2013; Patrick Lauer <patrick@gentoo.org> R-3.0.0.ebuild: + Force emake install to -j1 to avoid spurious failures #465352 *R-3.0.0 (04 Apr 2013) diff --git a/dev-lang/R/R-3.0.0.ebuild b/dev-lang/R/R-3.0.0.ebuild index d47eeffe0a90..cc0dc6cad8c8 100644 --- a/dev-lang/R/R-3.0.0.ebuild +++ b/dev-lang/R/R-3.0.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/R-3.0.0.ebuild,v 1.1 2013/04/04 22:10:01 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/R-3.0.0.ebuild,v 1.2 2013/04/10 07:09:19 patrick Exp $ EAPI=5 @@ -167,7 +167,7 @@ src_compile() { src_install() { default - emake -C src/nmath/standalone DESTDIR="${D}" install + emake -j1 -C src/nmath/standalone DESTDIR="${D}" install if use doc; then emake DESTDIR="${D}" install-info install-pdf |