Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/containerd/
Date: Fri, 07 Sep 2018 06:19:17
Message-Id: 1536301113.66dcf6865839e6dec857b1a39ef14df98bdf3fd8.mrueg@gentoo
1 commit: 66dcf6865839e6dec857b1a39ef14df98bdf3fd8
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 7 06:18:33 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 7 06:18:33 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66dcf686
7
8 app-emulation/containerd: Fix build for multiple BUILDTAGS
9
10 Closes: https://bugs.gentoo.org/show_bug.cgi?id=665418
11 Package-Manager: Portage-2.3.49, Repoman-2.3.10
12
13 app-emulation/containerd/containerd-1.1.2.ebuild | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/app-emulation/containerd/containerd-1.1.2.ebuild b/app-emulation/containerd/containerd-1.1.2.ebuild
17 index 4bd98d13a3b..1e306153994 100644
18 --- a/app-emulation/containerd/containerd-1.1.2.ebuild
19 +++ b/app-emulation/containerd/containerd-1.1.2.ebuild
20 @@ -47,7 +47,7 @@ src_prepare() {
21 src_compile() {
22 local options=( $(usex btrfs "" "no_btrfs") $(usex cri "" "no_cri") $(usex seccomp "seccomp" "") $(usex apparmor "apparmor" "") )
23 export GOPATH="${WORKDIR}/${P}" # ${PWD}/vendor
24 - LDFLAGS=$(usex hardened '-extldflags -fno-PIC' '') emake BUILDTAGS="${options[@]}"
25 + LDFLAGS=$(usex hardened '-extldflags -fno-PIC' '') BUILDTAGS="${options[@]}" emake
26 }
27
28 src_install() {