diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-03-03 20:37:38 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-03-03 20:37:38 +0000 |
commit | b9a2326cae22d427d082dfd6b0d26f0903ed0660 (patch) | |
tree | 7a79d2a5fc0798fb620f9ad0028e581429b1a4b2 /app-emulation/spectemu | |
parent | EAPI=2; fixes for bug #180458 and bug #260895 (diff) | |
download | gentoo-2-b9a2326cae22d427d082dfd6b0d26f0903ed0660.tar.gz gentoo-2-b9a2326cae22d427d082dfd6b0d26f0903ed0660.tar.bz2 gentoo-2-b9a2326cae22d427d082dfd6b0d26f0903ed0660.zip |
Add a workaround for a parallel emake install (bug #255777). Needs to be fixed, leave the bug open as long as the workaround is in.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/spectemu')
-rw-r--r-- | app-emulation/spectemu/ChangeLog | 9 | ||||
-rw-r--r-- | app-emulation/spectemu/spectemu-0.99.3.ebuild | 7 |
2 files changed, 11 insertions, 5 deletions
diff --git a/app-emulation/spectemu/ChangeLog b/app-emulation/spectemu/ChangeLog index 20ad6a697a6a..2a0ea97df199 100644 --- a/app-emulation/spectemu/ChangeLog +++ b/app-emulation/spectemu/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emulation/spectemu -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/spectemu/ChangeLog,v 1.25 2008/12/30 19:17:56 angelos Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spectemu/ChangeLog,v 1.26 2009/03/03 20:37:38 flameeyes Exp $ + + 03 Mar 2009; Diego E. Pettenò <flameeyes@gentoo.org> + spectemu-0.99.3.ebuild: + Add a workaround for a parallel emake install (bug #255777). Needs to be + fixed, leave the bug open as long as the workaround is in. 30 Dec 2008; Christoph Mende <angelos@gentoo.org> -spectemu-0.9.4.ebuild, spectemu-0.99.3.ebuild: diff --git a/app-emulation/spectemu/spectemu-0.99.3.ebuild b/app-emulation/spectemu/spectemu-0.99.3.ebuild index e65384799934..148182eca734 100644 --- a/app-emulation/spectemu/spectemu-0.99.3.ebuild +++ b/app-emulation/spectemu/spectemu-0.99.3.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/app-emulation/spectemu/spectemu-0.99.3.ebuild,v 1.12 2008/12/30 19:17:56 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spectemu/spectemu-0.99.3.ebuild,v 1.13 2009/03/03 20:37:38 flameeyes Exp $ ### Several versions of specemu exist, xspect & vgaspect, utilising X11 ### and/or svgalib. libreadline provides optional runtime features. @@ -43,5 +43,6 @@ src_compile() { } src_install() { - emake install_root="${D}" install || die "emake install failed" + # Parallel install bug #255777 + emake -j1 install_root="${D}" install || die "emake install failed" } |