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 588D7138334 for ; Fri, 29 Mar 2019 12:54:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F87BE0896; Fri, 29 Mar 2019 12:54:51 +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 35786E0896 for ; Fri, 29 Mar 2019 12:54:51 +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 95810335C94 for ; Fri, 29 Mar 2019 12:54:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E73D52F for ; Fri, 29 Mar 2019 12:54:48 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1553864066.681989c97b8b07163d74f7baed0502317d9c2943.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/cni-plugins/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/cni-plugins/cni-plugins-0.7.5.ebuild X-VCS-Directories: net-misc/cni-plugins/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 681989c97b8b07163d74f7baed0502317d9c2943 X-VCS-Branch: master Date: Fri, 29 Mar 2019 12:54:48 +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: 88fbac35-1cc2-4750-8ecc-dbd7a647fffa X-Archives-Hash: 07bc8d61795cb62065286b73e052b54b commit: 681989c97b8b07163d74f7baed0502317d9c2943 Author: Manuel Rüger gentoo org> AuthorDate: Fri Mar 29 12:54:26 2019 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Fri Mar 29 12:54:26 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=681989c9 net-misc/cni-plugins: Add missing || die Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Manuel Rüger gentoo.org> net-misc/cni-plugins/cni-plugins-0.7.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/cni-plugins/cni-plugins-0.7.5.ebuild b/net-misc/cni-plugins/cni-plugins-0.7.5.ebuild index f875d2d0f72..5351454f156 100644 --- a/net-misc/cni-plugins/cni-plugins-0.7.5.ebuild +++ b/net-misc/cni-plugins/cni-plugins-0.7.5.ebuild @@ -18,7 +18,7 @@ src_compile() { pushd src || die local i for i in plugins/{meta/{flannel,portmap,tuning},main/{bridge,host-device,ipvlan,loopback,macvlan,ptp,vlan},ipam/{dhcp,host-local},sample}; do - CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" GOPATH="${WORKDIR}/${P}" go install -v "${EGO_PN}/${i}" + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" GOPATH="${WORKDIR}/${P}" go install -v "${EGO_PN}/${i}" || die done popd || die }