diff options
Diffstat (limited to 'scp2/source/python')
-rw-r--r-- | scp2/source/python/file_python.scp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scp2/source/python/file_python.scp b/scp2/source/python/file_python.scp index 1b70d73cf827..2895c5c8b27e 100644 --- a/scp2/source/python/file_python.scp +++ b/scp2/source/python/file_python.scp @@ -300,10 +300,14 @@ End #ifdef UNX -// pyuno.so even on Mac OS X, because it is a python module File gid_File_Pyuno TXT_FILE_BODY; +#ifdef MACOSX + // note: Mac OS X use .dylib, even for python modules + Name = "pyuno.dylib"; +#else Name = "pyuno.so"; +#endif Dir = gid_Dir_Program; Styles = (PACKED); End |