From: Craig Andrews Date: Fri, 19 Jul 2019 15:20:49 +0000 (-0400) Subject: dev-util/conf2struct: Disable parallel make X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2567dd4089a370c75731d272908c34173119b02f;p=gentoo.git 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 --- diff --git a/dev-util/conf2struct/conf2struct-0_pre0.ebuild b/dev-util/conf2struct/conf2struct-0_pre0.ebuild index 67441e8cca93..33d18ebd06e3 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 }