From 51bd3ced26816af12abb6769cc292eb03bd904eb Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Mon, 20 May 2013 12:27:46 -0700 Subject: [PATCH] fix(coreos-base/core-admin): fix build system go get is required now since we don't have external packages checked into the tree. --- .../coreos-base/core-admin/core-admin-9999.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sdk_container/src/third_party/coreos-overlay/coreos-base/core-admin/core-admin-9999.ebuild b/sdk_container/src/third_party/coreos-overlay/coreos-base/core-admin/core-admin-9999.ebuild index df4d9e18d1..2ffc1136af 100644 --- a/sdk_container/src/third_party/coreos-overlay/coreos-base/core-admin/core-admin-9999.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/coreos-base/core-admin/core-admin-9999.ebuild @@ -23,7 +23,9 @@ GOROOT="${ED}usr/$(get_libdir)/go" GOPKG="${PN}" src_compile() { - GOPATH="${S}" go build || die + export GOPATH="${S}" + go get || die + go build -o ${PN} || die } src_install() {