fix(coreos-base/core-admin): adapt to go get in go1.1

this was failing the build before. Fix this until we find a better way.
This commit is contained in:
Brandon Philips 2013-05-27 15:34:56 -07:00
parent 04eef31b35
commit b498764357

View File

@ -19,12 +19,10 @@ KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND=">=dev-lang/go-1.0.2"
GOROOT="${ED}usr/$(get_libdir)/go"
GOPKG="${PN}"
src_compile() {
export GOPATH="${S}"
go get || die
go get
go build -o ${PN} || die
}