Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/advancemame/
Date: Wed, 29 Apr 2020 10:09:00
Message-Id: 1588154902.33e06e748ded1d938628b43bfd664f2ece852572.chewi@gentoo
1 commit: 33e06e748ded1d938628b43bfd664f2ece852572
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 29 10:08:15 2020 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 29 10:08:22 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33e06e74
7
8 games-emulation/advancemame: Work around parallel install bug with -j1
9
10 I'll try to fix it properly later.
11
12 Bug: https://bugs.gentoo.org/665770
13 Package-Manager: Portage-2.3.99, Repoman-2.3.22
14 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
15
16 games-emulation/advancemame/advancemame-3.9.ebuild | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19 diff --git a/games-emulation/advancemame/advancemame-3.9.ebuild b/games-emulation/advancemame/advancemame-3.9.ebuild
20 index a0c04dabff6..94f89102438 100644
21 --- a/games-emulation/advancemame/advancemame-3.9.ebuild
22 +++ b/games-emulation/advancemame/advancemame-3.9.ebuild
23 @@ -80,7 +80,7 @@ src_compile() {
24 }
25
26 src_install() {
27 - emake install \
28 + emake -j1 install \
29 VERSION="${PV}" \
30 DESTDIR="${D}"
31 }