aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMarco Vanotti <mvanotti@users.noreply.github.com>2019-04-03 15:44:56 -0700
committerJulia Hansbrough <flowerhack@google.com>2019-04-03 15:44:56 -0700
commitce4e53939eddbb3ee11cfa414d534ffbb9b3248b (patch)
treeecbc8e06a5f18be8dcf1c00fa7377f88bb127d38 /Makefile
parent26cbbd042aae9311e5c22e0c41523977aa95d451 (diff)
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/
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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)