From a840f80f9a950718677451d4d232918903c6f077 Mon Sep 17 00:00:00 2001 From: Zorchenhimer Date: Wed, 4 Nov 2020 22:59:01 -0500 Subject: [PATCH] Fix make recipe for wasm_exec.js file Add GO_VERSION to the command that copies the wasm_exec.js file so it will look in the correct folder when using an alternate version of Go. --- make/Makefile.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/Makefile.common b/make/Makefile.common index cef3133..c939903 100644 --- a/make/Makefile.common +++ b/make/Makefile.common @@ -18,7 +18,7 @@ MovieNight: *.go common/*.go GOOS=${GOOS} GOARCH=${ARCH} go$(GO_VERSION) build -o MovieNight${EXT} $(TAGS) static/js/wasm_exec.js: - cp $$(go env GOROOT)/misc/wasm/wasm_exec.js $@ + cp $$(go$(GO_VERSION) env GOROOT)/misc/wasm/wasm_exec.js $@ static/main.wasm: static/js/wasm_exec.js wasm/*.go common/*.go GOOS=js GOARCH=wasm go$(GO_VERSION) build -o $@ $(TAGS) wasm/*.go