Fossil SCM
Correct a typo in tool/emcc.sh.in which could cause all of the configure-time work to locate the emcc binary to go unused. Reported in [https://sqlite.org/forum/forumpost/feb325cdde5b6f37|sqlite forum post feb325cdde5b6f37] (sqlite uses a slight variant of this script).
Commit
f020f4568157c59a3264f56a8d276a5de5a5d5b84b59e97899475d2f4aeec922
Parent
3ce667ae583477a…
1 file changed
+1
-1
+1
-1
| --- tools/emcc.sh.in | ||
| +++ tools/emcc.sh.in | ||
| @@ -55,6 +55,6 @@ | ||
| 55 | 55 | echo "emcc not found in PATH. Normally that's set up by EMSDK_ENV." 1>&2 |
| 56 | 56 | exit 4 |
| 57 | 57 | fi |
| 58 | 58 | fi |
| 59 | 59 | |
| 60 | -exec emcc "$@" | |
| 60 | +exec $emcc "$@" | |
| 61 | 61 |
| --- tools/emcc.sh.in | |
| +++ tools/emcc.sh.in | |
| @@ -55,6 +55,6 @@ | |
| 55 | echo "emcc not found in PATH. Normally that's set up by EMSDK_ENV." 1>&2 |
| 56 | exit 4 |
| 57 | fi |
| 58 | fi |
| 59 | |
| 60 | exec emcc "$@" |
| 61 |
| --- tools/emcc.sh.in | |
| +++ tools/emcc.sh.in | |
| @@ -55,6 +55,6 @@ | |
| 55 | echo "emcc not found in PATH. Normally that's set up by EMSDK_ENV." 1>&2 |
| 56 | exit 4 |
| 57 | fi |
| 58 | fi |
| 59 | |
| 60 | exec $emcc "$@" |
| 61 |