diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2007-02-06 06:14:44 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2007-02-06 06:14:44 +0000 |
commit | 72a33835f97ea5dfd17a19e7a62377ded99d113b (patch) | |
tree | a19dc970793e34fee4ed56a2e640ad4770c114d9 /games-emulation | |
parent | Stable for HPPA (bug #159871). (diff) | |
download | gentoo-2-72a33835f97ea5dfd17a19e7a62377ded99d113b.tar.gz gentoo-2-72a33835f97ea5dfd17a19e7a62377ded99d113b.tar.bz2 gentoo-2-72a33835f97ea5dfd17a19e7a62377ded99d113b.zip |
work around more parallel make issues (bug #164068)
(Portage version: 2.1.1-r2)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/hatari/ChangeLog | 7 | ||||
-rw-r--r-- | games-emulation/hatari/hatari-0.90.ebuild | 7 |
2 files changed, 9 insertions, 5 deletions
diff --git a/games-emulation/hatari/ChangeLog b/games-emulation/hatari/ChangeLog index 610ee8ac5bc1..e2b6e2d86c43 100644 --- a/games-emulation/hatari/ChangeLog +++ b/games-emulation/hatari/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/hatari -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/hatari/ChangeLog,v 1.12 2006/10/01 21:20:21 mr_bones_ Exp $ +# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/hatari/ChangeLog,v 1.13 2007/02/06 06:14:44 mr_bones_ Exp $ + + 06 Feb 2007; Michael Sterrett <mr_bones_@gentoo.org> hatari-0.90.ebuild: + work around more parallel make issues (bug #164068) *hatari-0.90 (01 Oct 2006) diff --git a/games-emulation/hatari/hatari-0.90.ebuild b/games-emulation/hatari/hatari-0.90.ebuild index e8fcbab07a13..848fa63006e3 100644 --- a/games-emulation/hatari/hatari-0.90.ebuild +++ b/games-emulation/hatari/hatari-0.90.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/hatari/hatari-0.90.ebuild,v 1.1 2006/10/01 21:20:21 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/hatari/hatari-0.90.ebuild,v 1.2 2007/02/06 06:14:44 mr_bones_ Exp $ inherit games @@ -30,8 +30,9 @@ src_unpack() { } src_compile() { - # broken deps in the makefiles + # broken deps in the makefiles - bug #164068 emake -C src/uae-cpu gencpu || die "emake failed" + emake -C src/uae-cpu all || die "emake failed" emake -C src || die "emake failed" } |