diff options
author | Craig Andrews <candrews@gentoo.org> | 2019-07-19 11:20:49 -0400 |
---|---|---|
committer | Craig Andrews <candrews@gentoo.org> | 2019-07-19 11:47:09 -0400 |
commit | 2567dd4089a370c75731d272908c34173119b02f (patch) | |
tree | f5b02268ca4356d46948922dadd64013ff890363 /dev-util | |
parent | dev-python/hcloud-python: version bump to 1.3.0 (diff) | |
download | gentoo-2567dd4089a370c75731d272908c34173119b02f.tar.gz gentoo-2567dd4089a370c75731d272908c34173119b02f.tar.bz2 gentoo-2567dd4089a370c75731d272908c34173119b02f.zip |
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@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/conf2struct/conf2struct-0_pre0.ebuild | 5 |
1 files changed, 5 insertions, 0 deletions
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 } |