Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-dickey/
Date: Fri, 09 Sep 2022 14:43:33
Message-Id: 1662734587.881a6712cd47c459923415c8c86e3bd3d8aa0d3b.sam@gentoo
1 commit: 881a6712cd47c459923415c8c86e3bd3d8aa0d3b
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 9 14:43:07 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 9 14:43:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=881a6712
7
8 sys-devel/autoconf-dickey: force -j1 for tests
9
10 They still fail, but very differently. May just be because
11 of grep 3.8.
12
13 Closes: https://bugs.gentoo.org/869278
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild | 5 +++++
17 1 file changed, 5 insertions(+)
18
19 diff --git a/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild
20 index c02432050d58..f3ca0509bac2 100644
21 --- a/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild
22 +++ b/sys-devel/autoconf-dickey/autoconf-dickey-2.52_p20210509.ebuild
23 @@ -39,3 +39,8 @@ src_configure() {
24
25 econf "${myeconfargs[@]}"
26 }
27 +
28 +src_test() {
29 + # -j1 for bug #869278
30 + emake -j1 check
31 +}