diff options
author | Zac Medico <zmedico@gentoo.org> | 2015-08-10 14:06:10 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2015-08-10 14:06:10 -0700 |
commit | 00ae00a6983d050c43493b201870bfbfa22c0749 (patch) | |
tree | d9c33a5ada08f8ec76701aaba4a2cf7c0579df8c /app-emulation/lxd | |
parent | dev-go/go-crypto: 0_pre20150808 version bump (diff) | |
download | gentoo-00ae00a6983d050c43493b201870bfbfa22c0749.tar.gz gentoo-00ae00a6983d050c43493b201870bfbfa22c0749.tar.bz2 gentoo-00ae00a6983d050c43493b201870bfbfa22c0749.zip |
app-emulation/lxd: use get_golibdir_gopath for GOPATH
This is needed for compatibility with the latest go-crypto ebuild.
Diffstat (limited to 'app-emulation/lxd')
-rw-r--r-- | app-emulation/lxd/lxd-0.13.ebuild | 2 | ||||
-rw-r--r-- | app-emulation/lxd/lxd-0.14.ebuild | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app-emulation/lxd/lxd-0.13.ebuild b/app-emulation/lxd/lxd-0.13.ebuild index d32164648634..0485a2fab6f7 100644 --- a/app-emulation/lxd/lxd-0.13.ebuild +++ b/app-emulation/lxd/lxd-0.13.ebuild @@ -67,7 +67,7 @@ src_compile() { cd "${S}/src/${EGO_PN}" # Build binaries - GOPATH="${S}" emake + GOPATH="${S}:$(get_golibdir_gopath)" emake use nls && emake build-mo } diff --git a/app-emulation/lxd/lxd-0.14.ebuild b/app-emulation/lxd/lxd-0.14.ebuild index 2324df5b0f11..d5f20f000173 100644 --- a/app-emulation/lxd/lxd-0.14.ebuild +++ b/app-emulation/lxd/lxd-0.14.ebuild @@ -68,7 +68,7 @@ src_compile() { cd "${S}/src/${EGO_PN}" # Build binaries - GOPATH="${S}" emake + GOPATH="${S}:$(get_golibdir_gopath)" emake use nls && emake build-mo } |