From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B7DF3138334 for ; Fri, 19 Jul 2019 15:47:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BCA01E0784; Fri, 19 Jul 2019 15:47:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A084EE0784 for ; Fri, 19 Jul 2019 15:47:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 53BDE3480C4 for ; Fri, 19 Jul 2019 15:47:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CAAB266B for ; Fri, 19 Jul 2019 15:47:18 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1563551229.2567dd4089a370c75731d272908c34173119b02f.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/conf2struct/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/conf2struct/conf2struct-0_pre0.ebuild X-VCS-Directories: dev-util/conf2struct/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: 2567dd4089a370c75731d272908c34173119b02f X-VCS-Branch: master Date: Fri, 19 Jul 2019 15:47:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2d0631f8-bd9f-4a3b-975e-34972242da1d X-Archives-Hash: c623499c8fa4a83de4afcdcfac1a9edc commit: 2567dd4089a370c75731d272908c34173119b02f Author: Craig Andrews gentoo org> AuthorDate: Fri Jul 19 15:20:49 2019 +0000 Commit: Craig Andrews gentoo 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 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 }