8a4173987e
- configure with: - --host=wasm64-local-emscripten - had to make a few externals optional, so adding: - --disable-nss - --disable-cmis - --disable-curl Change-Id: I48d1c73d2675ad2e2beaf2c341578199efbd24ee Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111130 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
9 lines
254 B
Bash
Executable file
9 lines
254 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# We could run emconfigure here, but LO's gbuild should have set up everything
|
|
# correctly. If something breaks because of this, we likely have mre problems.
|
|
if test "$OS" = "EMSCRIPTEN"; then
|
|
export EMMAKEN_JUST_CONFIGURE=1
|
|
fi
|
|
|
|
exec "$@"
|