From ce4e53939eddbb3ee11cfa414d534ffbb9b3248b Mon Sep 17 00:00:00 2001 From: Marco Vanotti Date: Wed, 3 Apr 2019 15:44:56 -0700 Subject: Makefile: change go binary path for fuchsia. (#1102) Recently[0][1], fuchsia moved some of the tools out of `//scripts`, into the `//tools` directory. The go script was moved into `//tools/devshell/contrib/go`. This commit modifies the Makefile so that it references to the new go binary. [0]: https://fuchsia-review.googlesource.com/c/fuchsia/+/267708/ [1]: https://fuchsia-review.googlesource.com/c/fuchsia/+/267908/ --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4996a2529..4a6791b66 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ TARGETGOARCH := $(TARGETVMARCH) ifeq ("$(TARGETOS)", "fuchsia") # SOURCEDIR should point to fuchsia checkout. - GO = "$(SOURCEDIR)/scripts/devshell/go" + GO = "$(SOURCEDIR)/tools/devshell/contrib/go" endif GITREV=$(shell git rev-parse HEAD) -- cgit mrf-deployment