net-misc/cni-plugins: Add missing || die
authorManuel Rüger <mrueg@gentoo.org>
Fri, 29 Mar 2019 12:54:26 +0000 (13:54 +0100)
committerManuel Rüger <mrueg@gentoo.org>
Fri, 29 Mar 2019 12:54:26 +0000 (13:54 +0100)
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Manuel Rüger <mrueg@gentoo.org>
net-misc/cni-plugins/cni-plugins-0.7.5.ebuild

index f875d2d0f72d28fc60fb41aea79d235de35c2a02..5351454f1564d68a67f3ddd7f1e4119ddaf43300 100644 (file)
@@ -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
 }