diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-06-23 18:12:29 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-06-23 18:12:29 +0200 |
commit | 94f411eda1a3c9a9b20218f2899c82dca453034b (patch) | |
tree | 34c72992d0bea0dff09ba52702477eaceab60d28 /Makefile | |
parent | a64aa619d31130d08e228b467516c8cb7e814973 (diff) |
Fix glide path for non Linux OSes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -93,13 +93,13 @@ package-all: GOOS=darwin GOARCH=amd64 RELEASE=1 make -f $(ROOT_SRCDIR)/Makefile package test: tools/glide - go test --race $(shell ./tools/linux/glide novendor) + go test --race $(shell $(LOCAL_TOOLSDIR)/glide novendor) vet: tools/glide - go vet $(shell ./tools/linux/glide novendor) + go vet $(shell $(LOCAL_TOOLSDIR)/glide novendor) fmt: tools/glide - go fmt $(shell ./tools/linux/glide novendor) + go fmt $(shell $(LOCAL_TOOLSDIR)/glide novendor) run: build/xds tools/syncthing/copytobin $(LOCAL_BINDIR)/xds-agent$(EXT) --log info -c agent-config.json.in @@ -120,7 +120,7 @@ install: all mkdir -p $(DESTDIR) && cp $(LOCAL_BINDIR)/* $(DESTDIR) vendor: tools/glide glide.yaml - ./tools/linux/glide install --strip-vendor + $(LOCAL_TOOLSDIR)/glide install --strip-vendor .PHONY: tools/glide tools/glide: |