diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-07-16 16:26:32 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-07-16 16:26:32 +0000 |
commit | 50338e9d8344cb44a69880d915bc091b698bb3ca (patch) | |
tree | 200ce5a06bb36066d68bae98153d0949d97c9287 /x11-misc/xplore/xplore-1.2a.ebuild | |
parent | Version bump. (diff) | |
download | historical-50338e9d8344cb44a69880d915bc091b698bb3ca.tar.gz historical-50338e9d8344cb44a69880d915bc091b698bb3ca.tar.bz2 historical-50338e9d8344cb44a69880d915bc091b698bb3ca.zip |
Use emake -j1 rather than make; bug #278073.
Package-Manager: portage-2.2_rc33/cvs/Linux x86_64
Diffstat (limited to 'x11-misc/xplore/xplore-1.2a.ebuild')
-rw-r--r-- | x11-misc/xplore/xplore-1.2a.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/x11-misc/xplore/xplore-1.2a.ebuild b/x11-misc/xplore/xplore-1.2a.ebuild index 4ed061bdc182..1f216d926d3c 100644 --- a/x11-misc/xplore/xplore-1.2a.ebuild +++ b/x11-misc/xplore/xplore-1.2a.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplore/xplore-1.2a.ebuild,v 1.12 2008/06/17 12:44:34 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplore/xplore-1.2a.ebuild,v 1.13 2009/07/16 16:26:32 flameeyes Exp $ inherit eutils @@ -38,11 +38,11 @@ src_compile() { Xplore.tmpl.orig > Xplore.tmpl xmkmf -a || die "xmkmf Makefile creation failed" - # parallel make fails - make || die "make failed" + # parallel make fails (bug # + emake -j1 || die "make failed" } src_install() { - make DESTDIR="${D}" install || die "make install failed" + emake -j1 DESTDIR="${D}" install || die "make install failed" dodoc ChangeLog README TODO } |