diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-12-04 21:57:41 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-12-04 21:57:41 +0000 |
commit | 806b3759b267fa66033ef8b55bb71511b36ac7f5 (patch) | |
tree | 767b01a71543f27bfbd12286a3ea7c8faa673986 /dev-util/fhist | |
parent | Masking net-analyzer/ttt for QA removal. (diff) | |
download | gentoo-2-806b3759b267fa66033ef8b55bb71511b36ac7f5.tar.gz gentoo-2-806b3759b267fa66033ef8b55bb71511b36ac7f5.tar.bz2 gentoo-2-806b3759b267fa66033ef8b55bb71511b36ac7f5.zip |
Use -j1 for test and install as well as build, bug #295744.
(Portage version: 2.2_rc55/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/fhist')
-rw-r--r-- | dev-util/fhist/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/fhist/fhist-1.16.ebuild | 9 |
2 files changed, 10 insertions, 6 deletions
diff --git a/dev-util/fhist/ChangeLog b/dev-util/fhist/ChangeLog index 6840265b38da..0eddfee352c2 100644 --- a/dev-util/fhist/ChangeLog +++ b/dev-util/fhist/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/fhist -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/fhist/ChangeLog,v 1.19 2009/08/01 19:09:01 darkside Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/fhist/ChangeLog,v 1.20 2009/12/04 21:57:41 flameeyes Exp $ + + 04 Dec 2009; Diego E. Pettenò <flameeyes@gentoo.org> fhist-1.16.ebuild: + Use -j1 for test and install as well as build, bug #295744. 01 Aug 2009; Jeremy Olexa <darkside@gentoo.org> -fhist-1.14.ebuild: remove old diff --git a/dev-util/fhist/fhist-1.16.ebuild b/dev-util/fhist/fhist-1.16.ebuild index 752161fde206..681c5bf81d8c 100644 --- a/dev-util/fhist/fhist-1.16.ebuild +++ b/dev-util/fhist/fhist-1.16.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/dev-util/fhist/fhist-1.16.ebuild,v 1.3 2008/09/20 10:08:38 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/fhist/fhist-1.16.ebuild,v 1.4 2009/12/04 21:57:41 flameeyes Exp $ DESCRIPTION="File history and comparison tools" HOMEPAGE="http://fhist.sourceforge.net/fhist.html" @@ -19,15 +19,16 @@ DEPEND="${RDEPEND} src_compile() { econf || die "econf failed" + # bug #295744 emake -j1 || die "emake failed" } src_test() { - make sure || die "src_test failed" + emake -j1 sure || die "src_test failed" } src_install () { - make RPM_BUILD_ROOT="${D}" NLSDIR="${D}/usr/share/locale" \ + emake -j1 RPM_BUILD_ROOT="${D}" NLSDIR="${D}/usr/share/locale" \ install || die "make install failed" dodoc lib/en/*.txt |