Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/farstream/
Date: Fri, 27 Aug 2021 00:44:44
Message-Id: 1630025064.af299c8a25355ff56dc3909e00fed1b6c98759b7.sam@gentoo
1 commit: af299c8a25355ff56dc3909e00fed1b6c98759b7
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 27 00:44:24 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 27 00:44:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af299c8a
7
8 net-libs/farstream: workaround parallel build failure
9
10 Closes: https://bugs.gentoo.org/776175
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 net-libs/farstream/farstream-0.2.9.ebuild | 4 +++-
14 1 file changed, 3 insertions(+), 1 deletion(-)
15
16 diff --git a/net-libs/farstream/farstream-0.2.9.ebuild b/net-libs/farstream/farstream-0.2.9.ebuild
17 index eb7ddd40101..bb9bc8aee73 100644
18 --- a/net-libs/farstream/farstream-0.2.9.ebuild
19 +++ b/net-libs/farstream/farstream-0.2.9.ebuild
20 @@ -66,5 +66,7 @@ src_compile() {
21 # https://bugzilla.gnome.org/show_bug.cgi?id=744135
22 # https://bugzilla.gnome.org/show_bug.cgi?id=744134
23 addpredict /dev
24 - gnome2_src_compile
25 +
26 + # bug #776175 for -j1
27 + MAKEOPTS="-j1" gnome2_src_compile
28 }