Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/consul/
Date: Sat, 28 Oct 2017 22:04:54
Message-Id: 1509228281.4be559699a152a017bd2e02dde175280b679d8b5.zmedico@gentoo
1 commit: 4be559699a152a017bd2e02dde175280b679d8b5
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 28 22:02:49 2017 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 28 22:04:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4be55969
7
8 app-admin/consul: fix GOBIN interference (bug 631776)
9
10 Closes: https://bugs.gentoo.org/631776
11 Package-Manager: Portage-2.3.13, Repoman-2.3.3
12
13 app-admin/consul/consul-0.9.3.ebuild | 2 +-
14 app-admin/consul/consul-1.0.0.ebuild | 2 +-
15 2 files changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/app-admin/consul/consul-0.9.3.ebuild b/app-admin/consul/consul-0.9.3.ebuild
18 index 1eae049ea45..73999db91a2 100644
19 --- a/app-admin/consul/consul-0.9.3.ebuild
20 +++ b/app-admin/consul/consul-0.9.3.ebuild
21 @@ -42,7 +42,7 @@ src_compile() {
22 # The dev target sets causes build.sh to set appropriate XC_OS
23 # and XC_ARCH, and skips generation of an unused zip file,
24 # avoiding a dependency on app-arch/zip.
25 - GOPATH="${S}" \
26 + GOPATH="${S}" GOBIN="${S}/bin" \
27 emake -C "${S}/src/${EGO_PN}" dev
28 }
29
30
31 diff --git a/app-admin/consul/consul-1.0.0.ebuild b/app-admin/consul/consul-1.0.0.ebuild
32 index 1eae049ea45..73999db91a2 100644
33 --- a/app-admin/consul/consul-1.0.0.ebuild
34 +++ b/app-admin/consul/consul-1.0.0.ebuild
35 @@ -42,7 +42,7 @@ src_compile() {
36 # The dev target sets causes build.sh to set appropriate XC_OS
37 # and XC_ARCH, and skips generation of an unused zip file,
38 # avoiding a dependency on app-arch/zip.
39 - GOPATH="${S}" \
40 + GOPATH="${S}" GOBIN="${S}/bin" \
41 emake -C "${S}/src/${EGO_PN}" dev
42 }