Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/conf2struct/
Date: Fri, 19 Jul 2019 15:47:23
Message-Id: 1563551229.2567dd4089a370c75731d272908c34173119b02f.candrews@gentoo
1 commit: 2567dd4089a370c75731d272908c34173119b02f
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 19 15:20:49 2019 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 19 15:47:09 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2567dd40
7
8 dev-util/conf2struct: Disable parallel make
9
10 Closes: https://bugs.gentoo.org/690152
11 Package-Manager: Portage-2.3.69, Repoman-2.3.16
12 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
13
14 dev-util/conf2struct/conf2struct-0_pre0.ebuild | 5 +++++
15 1 file changed, 5 insertions(+)
16
17 diff --git a/dev-util/conf2struct/conf2struct-0_pre0.ebuild b/dev-util/conf2struct/conf2struct-0_pre0.ebuild
18 index 67441e8cca9..33d18ebd06e 100644
19 --- a/dev-util/conf2struct/conf2struct-0_pre0.ebuild
20 +++ b/dev-util/conf2struct/conf2struct-0_pre0.ebuild
21 @@ -33,6 +33,11 @@ RDEPEND="dev-libs/libconfig
22 dev-perl/Conf-Libconfig"
23 DEPEND="${RDEPEND}"
24
25 +src_compile(){
26 + # -j1 due to parallel make issue reported upstream at: https://github.com/yrutschle/conf2struct/issues/10
27 + emake -j1
28 +}
29 +
30 src_install(){
31 emake DESTDIR="${D}" prefix="${EPREFIX%/}/usr" install
32 }