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 C53CA138335 for ; Sat, 14 Dec 2019 00:26:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43917E08AC; Sat, 14 Dec 2019 00:26:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 2CA5DE08AC for ; Sat, 14 Dec 2019 00:26:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 59A5134D97C for ; Sat, 14 Dec 2019 00:26:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A16F0905 for ; Sat, 14 Dec 2019 00:26:49 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1576282128.88926bcb350f23d5660d3430cc5517326f3cb33c.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: gkbuilds/ X-VCS-Repository: proj/genkernel X-VCS-Files: gkbuilds/thin-provisioning-tools.gkbuild X-VCS-Directories: gkbuilds/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 88926bcb350f23d5660d3430cc5517326f3cb33c X-VCS-Branch: master Date: Sat, 14 Dec 2019 00:26:49 +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: 5d246207-2bca-46af-8c0e-ca954b9e1168 X-Archives-Hash: e276a51b6baa15de1230ef98824f9adb commit: 88926bcb350f23d5660d3430cc5517326f3cb33c Author: Thomas Deutschmann gentoo org> AuthorDate: Fri Dec 13 22:55:50 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sat Dec 14 00:08:48 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=88926bcb gkbuilds/thin-provisioning-tools: Add -j1 to avoid parallel install problem Signed-off-by: Thomas Deutschmann gentoo.org> gkbuilds/thin-provisioning-tools.gkbuild | 1 + 1 file changed, 1 insertion(+) diff --git a/gkbuilds/thin-provisioning-tools.gkbuild b/gkbuilds/thin-provisioning-tools.gkbuild index 64500c9..3091202 100644 --- a/gkbuilds/thin-provisioning-tools.gkbuild +++ b/gkbuilds/thin-provisioning-tools.gkbuild @@ -23,6 +23,7 @@ src_compile() { src_install() { local MYMAKEOPTS=( "DESTDIR=${D}" ) + MYMAKEOPTS+=( -j1 ) MYMAKEOPTS+=( "DATADIR=${D}/usr/share" ) MYMAKEOPTS+=( "install" )