diff options
author | David Tardon <dtardon@redhat.com> | 2013-04-09 09:41:35 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-04-09 09:46:38 +0200 |
commit | 542cf6d9eaa7d3a9875e0cd258c883a69577040f (patch) | |
tree | f959aaf02875bf4a327b313ed7ff4cdd330bdffd /pyuno | |
parent | 51149806f890e8181c016713cff30bc0c9c06450 (diff) |
unbreak windows tinderbox
Change-Id: Ic777267cb86acdb62b53a7b324e1423b7c6b67c5
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/source/module/pyuno_module.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/source/module/pyuno_module.cxx b/pyuno/source/module/pyuno_module.cxx index 62851c4741c0..4403e1a63fd8 100644 --- a/pyuno/source/module/pyuno_module.cxx +++ b/pyuno/source/module/pyuno_module.cxx @@ -344,7 +344,7 @@ static PyObject* initPoniesMode( if (!outdir) { abort(); } OStringBuffer libname(outdir); libname.append("/lib/"); - libname.append(SAL_DLLPREFIX "test" SAL_DLLEXTENSION); + libname.append(SAL_MODULENAME("test")); oslModule const mod( osl_loadModuleAscii(libname.getStr(), SAL_LOADMODULE_LAZY | SAL_LOADMODULE_GLOBAL) ); if (!mod) { abort(); } |