commit: 2567dd4089a370c75731d272908c34173119b02f Author: Craig Andrews <candrews <AT> gentoo <DOT> org> AuthorDate: Fri Jul 19 15:20:49 2019 +0000 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org> CommitDate: Fri Jul 19 15:47:09 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2567dd40
dev-util/conf2struct: Disable parallel make Closes: https://bugs.gentoo.org/690152 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org> dev-util/conf2struct/conf2struct-0_pre0.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-util/conf2struct/conf2struct-0_pre0.ebuild b/dev-util/conf2struct/conf2struct-0_pre0.ebuild index 67441e8cca9..33d18ebd06e 100644 --- a/dev-util/conf2struct/conf2struct-0_pre0.ebuild +++ b/dev-util/conf2struct/conf2struct-0_pre0.ebuild @@ -33,6 +33,11 @@ RDEPEND="dev-libs/libconfig dev-perl/Conf-Libconfig" DEPEND="${RDEPEND}" +src_compile(){ + # -j1 due to parallel make issue reported upstream at: https://github.com/yrutschle/conf2struct/issues/10 + emake -j1 +} + src_install(){ emake DESTDIR="${D}" prefix="${EPREFIX%/}/usr" install }
