fix(coreos-base/core-admin): fix build system

go get is required now since we don't have external packages checked
into the tree.
This commit is contained in:
Brandon Philips 2013-05-20 12:27:46 -07:00
parent acb8564f39
commit 51bd3ced26

View File

@ -23,7 +23,9 @@ GOROOT="${ED}usr/$(get_libdir)/go"
GOPKG="${PN}" GOPKG="${PN}"
src_compile() { src_compile() {
GOPATH="${S}" go build || die export GOPATH="${S}"
go get || die
go build -o ${PN} || die
} }
src_install() { src_install() {