Skip to content

Commit 43e5ae1

Browse files
authored
[browser][wasm] Fix provision-wasm build error (#49863)
``` cd emsdk && ./emsdk install `cat emscripten-version.txt` cat: emscripten-version.txt: No such file or directory ```
1 parent eae9a1d commit 43e5ae1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mono/wasm/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ all: build-native icu-files source-files header-files
3333
# If EMSDK_PATH is not set by the caller, download and setup a local emsdk install.
3434
#
3535

36-
EMSCRIPTEN_VERSION=`cat emscripten-version.txt`
36+
EMSCRIPTEN_VERSION := $(shell cat $(TOP)/src/mono/wasm/emscripten-version.txt)
3737
EMSDK_LOCAL_PATH=emsdk
3838
EMCC=source $(EMSDK_PATH)/emsdk_env.sh 2>/dev/null && emcc
3939

0 commit comments

Comments
 (0)