diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-08-07 23:50:17 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-08-07 23:50:17 +0000 |
commit | 969c663b6d060e52d46f03eb3e8b12628c0a4e1f (patch) | |
tree | 01d91187c633783c34baca1f1831b1ffd65753b3 /app-text/ghostscript-gpl | |
parent | Patch by ekass to skip service-specific openrc configs #377927. (diff) | |
download | gentoo-2-969c663b6d060e52d46f03eb3e8b12628c0a4e1f.tar.gz gentoo-2-969c663b6d060e52d46f03eb3e8b12628c0a4e1f.tar.bz2 gentoo-2-969c663b6d060e52d46f03eb3e8b12628c0a4e1f.zip |
Use -j1 for install as well, see bug #356303.
(Portage version: 2.2.0_alpha50/cvs/Linux x86_64)
Diffstat (limited to 'app-text/ghostscript-gpl')
-rw-r--r-- | app-text/ghostscript-gpl/ChangeLog | 6 | ||||
-rw-r--r-- | app-text/ghostscript-gpl/ghostscript-gpl-9.02.ebuild | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/app-text/ghostscript-gpl/ChangeLog b/app-text/ghostscript-gpl/ChangeLog index dcbeae861d34..d4cad7ee57d9 100644 --- a/app-text/ghostscript-gpl/ChangeLog +++ b/app-text/ghostscript-gpl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/ghostscript-gpl # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v 1.114 2011/08/05 10:55:25 naota Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v 1.115 2011/08/07 23:50:17 flameeyes Exp $ + + 07 Aug 2011; Diego E. Pettenò <flameeyes@gentoo.org> + ghostscript-gpl-9.02.ebuild: + Use -j1 for install as well, see bug #356303. 05 Aug 2011; Naohiro Aota <naota@gentoo.org> ghostscript-gpl-9.02.ebuild, +files/ghostscript-gpl-9.02-byteswap.patch: diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-9.02.ebuild b/app-text/ghostscript-gpl/ghostscript-gpl-9.02.ebuild index 4c19c2a3c780..3c5794b0af11 100644 --- a/app-text/ghostscript-gpl/ghostscript-gpl-9.02.ebuild +++ b/app-text/ghostscript-gpl/ghostscript-gpl-9.02.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.02.ebuild,v 1.3 2011/08/05 10:55:25 naota Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.02.ebuild,v 1.4 2011/08/07 23:50:17 flameeyes Exp $ EAPI=3 inherit autotools eutils versionator flag-o-matic @@ -177,7 +177,8 @@ src_compile() { } src_install() { - emake DESTDIR="${D}" install-so install || die "emake install failed" + # -j1 -> see bug #356303 + emake -j1 DESTDIR="${D}" install-so install || die "emake install failed" if ! use bindist && use djvu ; then dobin gsdjvu || die "dobin gsdjvu install failed" |