diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2008-11-24 09:40:57 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2008-11-24 09:40:57 +0000 |
commit | 20fbaa99e65dde0164f16e24027a4eae3759ab4b (patch) | |
tree | d30ca55ef40e8b3765dda864865395f32d0f4e78 /sci-mathematics/yacas/yacas-1.2.2.ebuild | |
parent | alpha/arm/ia64/sparc stable wrt #248439 (diff) | |
download | gentoo-2-20fbaa99e65dde0164f16e24027a4eae3759ab4b.tar.gz gentoo-2-20fbaa99e65dde0164f16e24027a4eae3759ab4b.tar.bz2 gentoo-2-20fbaa99e65dde0164f16e24027a4eae3759ab4b.zip |
Added -j1 for java case
(Portage version: 2.2_rc15/cvs/Linux 2.6.25-gentoo-r7 x86_64)
Diffstat (limited to 'sci-mathematics/yacas/yacas-1.2.2.ebuild')
-rw-r--r-- | sci-mathematics/yacas/yacas-1.2.2.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sci-mathematics/yacas/yacas-1.2.2.ebuild b/sci-mathematics/yacas/yacas-1.2.2.ebuild index 37fbdb1254d8..f097b3903945 100644 --- a/sci-mathematics/yacas/yacas-1.2.2.ebuild +++ b/sci-mathematics/yacas/yacas-1.2.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/yacas-1.2.2.ebuild,v 1.6 2008/11/10 23:34:22 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/yacas-1.2.2.ebuild,v 1.7 2008/11/24 09:40:57 bicatali Exp $ inherit eutils java-pkg-opt-2 @@ -33,7 +33,8 @@ src_compile() { emake || die "emake failed" if use java; then cd JavaYacas || die - emake -f makefile.yacas || die "emake java interface failed" + # -j1 because of file generation dependence + emake -j1 -f makefile.yacas || die "emake java interface failed" fi } |