diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-12-19 13:15:04 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-12-19 13:15:04 +0000 |
commit | ba38d71e84707d560bcca9da945b36baef56ff84 (patch) | |
tree | 1c1898bac425cbb5a823ec4da49c01752326cb16 /dev-ml/ocaml-ssl/ocaml-ssl-0.4.2.ebuild | |
parent | Fixed directory for acml and forced dynamic linking with gfortran when select... (diff) | |
download | gentoo-2-ba38d71e84707d560bcca9da945b36baef56ff84.tar.gz gentoo-2-ba38d71e84707d560bcca9da945b36baef56ff84.tar.bz2 gentoo-2-ba38d71e84707d560bcca9da945b36baef56ff84.zip |
parallel make happens to produce broken installs, disabling it for now
(Portage version: 2.1.4_rc10)
Diffstat (limited to 'dev-ml/ocaml-ssl/ocaml-ssl-0.4.2.ebuild')
-rw-r--r-- | dev-ml/ocaml-ssl/ocaml-ssl-0.4.2.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-ml/ocaml-ssl/ocaml-ssl-0.4.2.ebuild b/dev-ml/ocaml-ssl/ocaml-ssl-0.4.2.ebuild index b62f286b83ec..fda9f8c51907 100644 --- a/dev-ml/ocaml-ssl/ocaml-ssl-0.4.2.ebuild +++ b/dev-ml/ocaml-ssl/ocaml-ssl-0.4.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-ssl/ocaml-ssl-0.4.2.ebuild,v 1.4 2007/09/18 09:43:14 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-ssl/ocaml-ssl-0.4.2.ebuild,v 1.5 2007/12/19 13:15:04 aballier Exp $ inherit findlib eutils @@ -20,12 +20,12 @@ KEYWORDS="amd64 ppc x86" src_compile() { econf || die "configure failed" - emake || die "make failed" + emake -j1 || die "make failed" } src_install() { findlib_src_preinst - emake install || die + emake install || die "make install failed" if use doc; then dohtml -r doc/html/* |