Do not enforce tags on make deps (#1301)

Dependencies are built out of the build container and we shouldn't enforce
specific tags.

It breaks the release process (see https://github.com/weaveworks/scope/wiki/Release-Process#go-to-a-linux-host)
in machines with standard Go installations resulting in:

```
go install net: open /usr/local/go/pkg/linux_amd64/net.a: permission denied
```
This commit is contained in:
Alfonso Acosta
2016-04-14 15:33:20 +01:00
committed by Tom Wilkie
parent 66aad82598
commit 91b3610b1b

View File

@@ -157,8 +157,10 @@ clean:
clean-codecgen:
rm -rf $(CODECGEN_TARGETS) $(CODECGEN_DIR)/bin
# Dependencies are intentionally build without enforcing any tags
# since they are build on the host
deps:
$(GO) get -u -f -tags $(GO_BUILD_TAGS) \
$(GO) get -u -f \
github.com/FiloSottile/gvt \
github.com/mattn/goveralls \
github.com/weaveworks/github-release \