summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorJan-Marek Glogowski <glogow@fbihome.de>2022-01-09 00:40:43 +0100
committerJan-Marek Glogowski <glogow@fbihome.de>2022-01-19 10:50:35 +0100
commitad5563b4f210b32bcdd7a2efb167ce2c2745f9db (patch)
tree5e193a9885010ce12107cf4a46939fa2e61ff52b /cppuhelper
parent599cbdb9c2a1184680bb89aa2978e8003eca93d9 (diff)
WASM setup as non-multiuser, desktop build
Change-Id: I2ee6e006554cf1e5e5e42c2f4f73d8788bff8f4b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128585 Tested-by: Jenkins Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/source/paths.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/cppuhelper/source/paths.cxx b/cppuhelper/source/paths.cxx
index 480dcde48fe7..785fa452d30b 100644
--- a/cppuhelper/source/paths.cxx
+++ b/cppuhelper/source/paths.cxx
@@ -61,6 +61,8 @@ OUString cppu::getUnoIniUri() {
// and since rtlBootstrapHandle is not ref-counted doing anything
// clean here is hardish.
OUString uri("file:///assets/program");
+#elif defined(EMSCRIPTEN)
+ OUString uri("file:///instdir/program");
#else
OUString uri(get_this_libpath());
#ifdef MACOSX