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 | b798c4a6409d1c84282d0dfeddabe97022997ddf (patch) | |
tree | 17acf6db8bc2af79c5643e024db94aa648d2a788 /x11-misc/xplore | |
parent | Version bump. (diff) | |
download | gentoo-2-b798c4a6409d1c84282d0dfeddabe97022997ddf.tar.gz gentoo-2-b798c4a6409d1c84282d0dfeddabe97022997ddf.tar.bz2 gentoo-2-b798c4a6409d1c84282d0dfeddabe97022997ddf.zip |
Use emake -j1 rather than make; bug #278073.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/xplore')
-rw-r--r-- | x11-misc/xplore/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xplore/xplore-1.2a.ebuild | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/x11-misc/xplore/ChangeLog b/x11-misc/xplore/ChangeLog index f0aff28881b8..1f6ccad75bd7 100644 --- a/x11-misc/xplore/ChangeLog +++ b/x11-misc/xplore/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/xplore -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplore/ChangeLog,v 1.13 2008/06/17 12:44:34 nelchael Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplore/ChangeLog,v 1.14 2009/07/16 16:26:32 flameeyes Exp $ + + 16 Jul 2009; Diego E. Pettenò <flameeyes@gentoo.org> xplore-1.2a.ebuild: + Use emake -j1 rather than make; bug #278073. 17 Jun 2008; Krzysiek Pawlik <nelchael@gentoo.org> xplore-1.2a.ebuild: Add missing x11-libs/libXpm to DEPEND, bug #227663. 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 } |