From 464524fa44a21bcfaef969f7bb5e12fdb4d1061d Mon Sep 17 00:00:00 2001 From: Julius Volz Date: Tue, 17 Feb 2015 02:05:17 +0100 Subject: [PATCH] Make config/Makefile use user Go installation. Otherwise it will fail to "go get" the "github.com/golang/protobuf" package because its dir already exists in the vendored packages, but the copy isn't a git repository. --- config/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/Makefile b/config/Makefile index 983c0a05d..1a71d02b9 100644 --- a/config/Makefile +++ b/config/Makefile @@ -18,5 +18,5 @@ SUFFIXES: include ../Makefile.INCLUDE generated/config.pb.go: config.proto - $(GO) get github.com/golang/protobuf/protoc-gen-go + go get github.com/golang/protobuf/protoc-gen-go $(PROTOC) --proto_path=$(PREFIX)/include:. --go_out=generated/ config.proto