diff options
author | Justin Lecher <jlec@gentoo.org> | 2011-10-07 15:03:15 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2011-10-07 15:03:15 +0000 |
commit | 054003fd4556e58048a422de34f0a0fa096a575b (patch) | |
tree | 7aa4f667fe6160e562e05f1d1d18220b64aece82 /dev-util/fhist/fhist-1.19.ebuild | |
parent | Fixed HOMPAGE, #350571 (diff) | |
download | gentoo-2-054003fd4556e58048a422de34f0a0fa096a575b.tar.gz gentoo-2-054003fd4556e58048a422de34f0a0fa096a575b.tar.bz2 gentoo-2-054003fd4556e58048a422de34f0a0fa096a575b.zip |
Move parallel make blocking to global space, #358567 & #356671
(Portage version: 2.2.0_alpha62/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/fhist/fhist-1.19.ebuild')
-rw-r--r-- | dev-util/fhist/fhist-1.19.ebuild | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/dev-util/fhist/fhist-1.19.ebuild b/dev-util/fhist/fhist-1.19.ebuild index 4f884b773a03..6a971fb35328 100644 --- a/dev-util/fhist/fhist-1.19.ebuild +++ b/dev-util/fhist/fhist-1.19.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/fhist/fhist-1.19.ebuild,v 1.5 2011/09/25 12:35:42 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/fhist/fhist-1.19.ebuild,v 1.6 2011/10/07 15:03:15 jlec Exp $ -EAPI="4" +EAPI=4 inherit eutils @@ -23,15 +23,8 @@ DEPEND="${RDEPEND} sys-devel/bison test? ( app-arch/sharutils )" +MAKEOPTS+=" -j1" + src_prepare() { epatch "${FILESDIR}"/${PV}-ldflags.patch } - -src_compile() { - emake -j1 -} - -src_install () { - emake -j1 DESTDIR="${D}" install - dodoc README -} |