diff options
author | Markus Dittrich <markusle@gentoo.org> | 2006-06-24 12:06:26 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2006-06-24 12:06:26 +0000 |
commit | f56ef71be92d3c39f953c054e8edccce6b5eb8b6 (patch) | |
tree | 2efd5542becd4334e1a1501d21ebd8c76cbc5b3e /sci-visualization/epix/epix-1.0.7.ebuild | |
parent | version bump as per bug #137680 (diff) | |
download | historical-f56ef71be92d3c39f953c054e8edccce6b5eb8b6.tar.gz historical-f56ef71be92d3c39f953c054e8edccce6b5eb8b6.tar.bz2 historical-f56ef71be92d3c39f953c054e8edccce6b5eb8b6.zip |
Force MAKEOPTS=-j1 since the makefile breaks for parallel builds. This closes bugs #135266 and #137762.
Package-Manager: portage-2.1.1_pre1-r2
Diffstat (limited to 'sci-visualization/epix/epix-1.0.7.ebuild')
-rw-r--r-- | sci-visualization/epix/epix-1.0.7.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sci-visualization/epix/epix-1.0.7.ebuild b/sci-visualization/epix/epix-1.0.7.ebuild index ccfdd435aee4..0d370b210755 100644 --- a/sci-visualization/epix/epix-1.0.7.ebuild +++ b/sci-visualization/epix/epix-1.0.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/epix/epix-1.0.7.ebuild,v 1.1 2006/06/03 14:49:46 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/epix/epix-1.0.7.ebuild,v 1.2 2006/06/24 12:06:26 markusle Exp $ inherit toolchain-funcs flag-o-matic @@ -29,7 +29,7 @@ src_unpack() { src_compile() { econf || die "failed to configure" - emake || die "emake failed" + emake -j1 || die "emake failed" } src_install() { |