Skip to content

Commit

Permalink
[browser][wasm] Fix provision-wasm build error (#49863)
Browse files Browse the repository at this point in the history
```
cd emsdk && ./emsdk install `cat emscripten-version.txt`
cat: emscripten-version.txt: No such file or directory
```
  • Loading branch information
kjpou1 authored Mar 19, 2021
1 parent eae9a1d commit 43e5ae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mono/wasm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ all: build-native icu-files source-files header-files
# If EMSDK_PATH is not set by the caller, download and setup a local emsdk install.
#

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

Expand Down

0 comments on commit 43e5ae1

Please sign in to comment.