Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/ocaml: ChangeLog ocaml-3.10.2.ebuild
Date: Sat, 01 Aug 2009 23:11:59
Message-Id: E1MXNk5-00050J-On@stork.gentoo.org
1 flameeyes 09/08/01 23:11:57
2
3 Modified: ChangeLog ocaml-3.10.2.ebuild
4 Log:
5 Use -j1 for make. Bug #279968.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.169 dev-lang/ocaml/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.169&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.169&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ChangeLog?r1=1.168&r2=1.169
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v
18 retrieving revision 1.168
19 retrieving revision 1.169
20 diff -u -r1.168 -r1.169
21 --- ChangeLog 20 Jun 2009 16:12:58 -0000 1.168
22 +++ ChangeLog 1 Aug 2009 23:11:57 -0000 1.169
23 @@ -1,6 +1,9 @@
24 # ChangeLog for dev-lang/ocaml
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.168 2009/06/20 16:12:58 aballier Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.169 2009/08/01 23:11:57 flameeyes Exp $
28 +
29 + 01 Aug 2009; Diego E. Pettenò <flameeyes@g.o> ocaml-3.10.2.ebuild:
30 + Use -j1 for make. Bug #279968.
31
32 20 Jun 2009; Alexis Ballier <aballier@g.o> ocaml-3.11.1.ebuild:
33 use CHOST prefixed toolchain for building, this does not give us cross
34
35
36
37 1.15 dev-lang/ocaml/ocaml-3.10.2.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ocaml-3.10.2.ebuild?rev=1.15&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ocaml-3.10.2.ebuild?rev=1.15&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ocaml-3.10.2.ebuild?r1=1.14&r2=1.15
42
43 Index: ocaml-3.10.2.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.10.2.ebuild,v
46 retrieving revision 1.14
47 retrieving revision 1.15
48 diff -u -r1.14 -r1.15
49 --- ocaml-3.10.2.ebuild 19 May 2009 23:12:46 -0000 1.14
50 +++ ocaml-3.10.2.ebuild 1 Aug 2009 23:11:57 -0000 1.15
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.10.2.ebuild,v 1.14 2009/05/19 23:12:46 aballier Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.10.2.ebuild,v 1.15 2009/08/01 23:11:57 flameeyes Exp $
56
57 EAPI="1"
58
59 @@ -85,7 +85,8 @@
60 --mandir /usr/share/man \
61 --with-pthread ${myconf} || die "configure failed!"
62
63 - make world || die "make world failed!"
64 + # bug #279968
65 + emake -j1 world || die "make world failed!"
66
67 # Native code generation can be disabled now
68 if use ocamlopt ; then