diff options
author | Henrik Brix Andersen <brix@gentoo.org> | 2006-06-25 21:45:16 +0000 |
---|---|---|
committer | Henrik Brix Andersen <brix@gentoo.org> | 2006-06-25 21:45:16 +0000 |
commit | 5799bfc6e6dac901466c2ae925cf89cf8d326fce (patch) | |
tree | 833468641174d1437d30544fb533613d11fa843b /app-doc/gimp-help | |
parent | Stable on hppa. (diff) | |
download | gentoo-2-5799bfc6e6dac901466c2ae925cf89cf8d326fce.tar.gz gentoo-2-5799bfc6e6dac901466c2ae925cf89cf8d326fce.tar.bz2 gentoo-2-5799bfc6e6dac901466c2ae925cf89cf8d326fce.zip |
Use 'emake -j1', bug #137192.
(Portage version: 2.1-r1)
Diffstat (limited to 'app-doc/gimp-help')
-rw-r--r-- | app-doc/gimp-help/ChangeLog | 5 | ||||
-rw-r--r-- | app-doc/gimp-help/gimp-help-0.10.ebuild | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/app-doc/gimp-help/ChangeLog b/app-doc/gimp-help/ChangeLog index 9d60ce611b59..42a280e09ba2 100644 --- a/app-doc/gimp-help/ChangeLog +++ b/app-doc/gimp-help/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-doc/gimp-help # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/gimp-help/ChangeLog,v 1.7 2006/06/20 22:30:54 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/gimp-help/ChangeLog,v 1.8 2006/06/25 21:45:16 brix Exp $ + + 25 Jun 2006; Henrik Brix Andersen <brix@gentoo.org> gimp-help-0.10.ebuild: + Use 'emake -j1', bug #137192. 20 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org> gimp-help-0.10.ebuild: Keyworded ~sparc wrt #137192 diff --git a/app-doc/gimp-help/gimp-help-0.10.ebuild b/app-doc/gimp-help/gimp-help-0.10.ebuild index b8827b1fbf1a..df87f114a744 100644 --- a/app-doc/gimp-help/gimp-help-0.10.ebuild +++ b/app-doc/gimp-help/gimp-help-0.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/gimp-help/gimp-help-0.10.ebuild,v 1.7 2006/06/20 22:30:54 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/gimp-help/gimp-help-0.10.ebuild,v 1.8 2006/06/25 21:45:16 brix Exp $ MY_P=${P/gimp-help/gimp-help-2} S=${WORKDIR}/${MY_P} @@ -38,7 +38,9 @@ src_compile() { --without-gimp \ $(use_enable imagemagick convert) \ || die "econf failed" - emake || die "emake failed" + + # not parallel make safe (#137192) + emake -j1 || die "emake failed" } src_install() { |