diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-12-25 14:47:01 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-12-25 14:47:01 +0000 |
commit | be860eee380a530ff43259b00348323f76d50983 (patch) | |
tree | 49d71928db3ca71dd9ffb5a094bfdf1cfebccda2 /app-dicts | |
parent | Patch echoe not to unconditionally require gemcutter, closes bug #298048 than... (diff) | |
download | gentoo-2-be860eee380a530ff43259b00348323f76d50983.tar.gz gentoo-2-be860eee380a530ff43259b00348323f76d50983.tar.bz2 gentoo-2-be860eee380a530ff43259b00348323f76d50983.zip |
Use -j1 for build (bug #295830).
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'app-dicts')
-rw-r--r-- | app-dicts/ispell-no/ChangeLog | 8 | ||||
-rw-r--r-- | app-dicts/ispell-no/ispell-no-2.10.ebuild | 9 |
2 files changed, 11 insertions, 6 deletions
diff --git a/app-dicts/ispell-no/ChangeLog b/app-dicts/ispell-no/ChangeLog index 8d7f7ab98b11..c8d1e0ca4805 100644 --- a/app-dicts/ispell-no/ChangeLog +++ b/app-dicts/ispell-no/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-dicts/ispell-no -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-no/ChangeLog,v 1.9 2009/02/25 13:16:01 josejx Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-no/ChangeLog,v 1.10 2009/12/25 14:47:01 flameeyes Exp $ + + 25 Dec 2009; Diego E. Pettenò <flameeyes@gentoo.org> + ispell-no-2.10.ebuild: + Use -j1 for build (bug #295830). 25 Feb 2009; Joseph Jezak <josejx@gentoo.org> ispell-no-2.10.ebuild: Marked ~ppc for bug #245139. diff --git a/app-dicts/ispell-no/ispell-no-2.10.ebuild b/app-dicts/ispell-no/ispell-no-2.10.ebuild index 3936ea73e67f..30a796092d15 100644 --- a/app-dicts/ispell-no/ispell-no-2.10.ebuild +++ b/app-dicts/ispell-no/ispell-no-2.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-no/ispell-no-2.10.ebuild,v 1.5 2009/02/25 13:16:01 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-no/ispell-no-2.10.ebuild,v 1.6 2009/12/25 14:47:01 flameeyes Exp $ inherit multilib versionator @@ -20,11 +20,12 @@ S=${WORKDIR}/${MY_PN}-$(get_major_version).0.$(get_version_component_range 2) src_compile() { export LC_ALL=C #227055 - make SED="sed" BUILDHASH="/usr/bin/buildhash" ispell || die + # bug #295830 + emake -j1 SED="sed" BUILDHASH="/usr/bin/buildhash" ispell || die } src_install () { - insinto /usr/$(get_libdir)/ispell - doins {nb,nn}.{hash,aff} || die + insinto /usr/$(get_libdir)/ispell + doins {nb,nn}.{hash,aff} || die dodoc NEWS } |