Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
flameeyes 09/08/01 23:11:57
Modified: ChangeLog ocaml-3.10.2.ebuild
Log:
Use -j1 for make. Bug #279968.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Revision Changes Path
1.169 dev-lang/ocaml/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.169&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.169&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ChangeLog?r1=1.168&r2=1.169
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -r1.168 -r1.169
--- ChangeLog 20 Jun 2009 16:12:58 -0000 1.168
+++ ChangeLog 1 Aug 2009 23:11:57 -0000 1.169
@@ -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@g.o> ocaml-3.10.2.ebuild:
+ Use -j1 for make. Bug #279968.
20 Jun 2009; Alexis Ballier <aballier@g.o> ocaml-3.11.1.ebuild:
use CHOST prefixed toolchain for building, this does not give us cross
1.15 dev-lang/ocaml/ocaml-3.10.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ocaml-3.10.2.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ocaml-3.10.2.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ocaml-3.10.2.ebuild?r1=1.14&r2=1.15
Index: ocaml-3.10.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.10.2.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ocaml-3.10.2.ebuild 19 May 2009 23:12:46 -0000 1.14
+++ ocaml-3.10.2.ebuild 1 Aug 2009 23:11:57 -0000 1.15
@@ -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 @@
--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
|
|