diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-08-01 23:11:57 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-08-01 23:11:57 +0000 |
commit | c5c4c50a6666b0cbf7f4038d28abfdbdd949d999 (patch) | |
tree | b35c3beff4e528fd8074d135373ccb8a2f1d8bd9 /dev-lang | |
parent | Set SUPPORT_PYTHON_ABIS. (diff) | |
download | gentoo-2-c5c4c50a6666b0cbf7f4038d28abfdbdd949d999.tar.gz gentoo-2-c5c4c50a6666b0cbf7f4038d28abfdbdd949d999.tar.bz2 gentoo-2-c5c4c50a6666b0cbf7f4038d28abfdbdd949d999.zip |
Use -j1 for make. Bug #279968.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/ocaml/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/ocaml/ocaml-3.10.2.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/dev-lang/ocaml/ChangeLog b/dev-lang/ocaml/ChangeLog index 4a463e5c637e..900ec0af6641 100644 --- a/dev-lang/ocaml/ChangeLog +++ b/dev-lang/ocaml/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/ocaml # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.168 2009/06/20 16:12:58 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.169 2009/08/01 23:11:57 flameeyes Exp $ + + 01 Aug 2009; Diego E. Pettenò <flameeyes@gentoo.org> ocaml-3.10.2.ebuild: + Use -j1 for make. Bug #279968. 20 Jun 2009; Alexis Ballier <aballier@gentoo.org> ocaml-3.11.1.ebuild: use CHOST prefixed toolchain for building, this does not give us cross diff --git a/dev-lang/ocaml/ocaml-3.10.2.ebuild b/dev-lang/ocaml/ocaml-3.10.2.ebuild index 7e888f634f0b..99d65be5c480 100644 --- a/dev-lang/ocaml/ocaml-3.10.2.ebuild +++ b/dev-lang/ocaml/ocaml-3.10.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.10.2.ebuild,v 1.14 2009/05/19 23:12:46 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.10.2.ebuild,v 1.15 2009/08/01 23:11:57 flameeyes Exp $ EAPI="1" @@ -85,7 +85,8 @@ src_compile() { --mandir /usr/share/man \ --with-pthread ${myconf} || die "configure failed!" - make world || die "make world failed!" + # bug #279968 + emake -j1 world || die "make world failed!" # Native code generation can be disabled now if use ocamlopt ; then |