diff options
author | 2012-08-13 17:45:27 +0000 | |
---|---|---|
committer | 2012-08-13 17:45:27 +0000 | |
commit | 299d7127332e73e41a540a3355ce4b234530034e (patch) | |
tree | 61493eb58471bc8721c726aa95f46e07df07353d /app-text | |
parent | Remove old; bump to EAPI 4, use the new rspec recipe for tests; remove mandat... (diff) | |
download | gentoo-2-299d7127332e73e41a540a3355ce4b234530034e.tar.gz gentoo-2-299d7127332e73e41a540a3355ce4b234530034e.tar.bz2 gentoo-2-299d7127332e73e41a540a3355ce4b234530034e.zip |
Reintroduce -j1 workaround for parallel make. Bug #234378 and #430946.
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/ghostscript-gpl/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/ghostscript-gpl/ghostscript-gpl-9.06.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/app-text/ghostscript-gpl/ChangeLog b/app-text/ghostscript-gpl/ChangeLog index 6e324220b992..fe98c5844b31 100644 --- a/app-text/ghostscript-gpl/ChangeLog +++ b/app-text/ghostscript-gpl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/ghostscript-gpl # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v 1.151 2012/08/10 15:44:27 tgurr Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v 1.152 2012/08/13 17:45:27 tgurr Exp $ + + 13 Aug 2012; Timo Gurr <tgurr@gentoo.org> ghostscript-gpl-9.06.ebuild: + Reintroduce -j1 workaround for parallel make. Bug #234378 and #430946. *ghostscript-gpl-9.06 (10 Aug 2012) diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-9.06.ebuild b/app-text/ghostscript-gpl/ghostscript-gpl-9.06.ebuild index 8c0661a8fce9..88db06c0890e 100644 --- a/app-text/ghostscript-gpl/ghostscript-gpl-9.06.ebuild +++ b/app-text/ghostscript-gpl/ghostscript-gpl-9.06.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 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.06.ebuild,v 1.1 2012/08/10 15:44:27 tgurr Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.06.ebuild,v 1.2 2012/08/13 17:45:27 tgurr Exp $ EAPI=4 @@ -176,7 +176,8 @@ src_configure() { } src_compile() { - emake so all + # workaround: -j1 -> see bug #234378 + emake -j1 so all cd "${S}/ijs" emake |