diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-06-15 16:46:44 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-06-15 16:50:55 +0200 |
commit | fa2006828ff69509e1ead755af906dcd35a992bf (patch) | |
tree | a5ecc531535c4f5fedbf40f159de2b723fce3a7e /RepositoryFixes.mk | |
parent | 19e298646d52f63554f9517ff19b7a7f5d1e3b52 (diff) |
Fix pyuno.so name on Mac OS X
...which also needs a change to the logic that symlinks *.jnilib to *.dylib, as
that would have symlinked pyuno.so onto itself (as it contains no .dylib). (And
while we are at that, anyway, also only store relative paths in the symlinks.)
Change-Id: I6f3e9effc4d185df935795958cc84e60e862a424
Diffstat (limited to 'RepositoryFixes.mk')
-rw-r--r-- | RepositoryFixes.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/RepositoryFixes.mk b/RepositoryFixes.mk index 45833b96639f..12108f3cfe90 100644 --- a/RepositoryFixes.mk +++ b/RepositoryFixes.mk @@ -44,8 +44,8 @@ gb_Library_FILENAMES := $(patsubst store:libuno_store%,store:libstore%,$(gb_Libr gb_Library_FILENAMES := $(patsubst ucbhelper:libucbhelper%,ucbhelper:libucbhelper4%,$(gb_Library_FILENAMES)) ifeq ($(OS),MACOSX) -# libpyuno_wrapper.so => pyuno.dyn -gb_Library_FILENAMES := $(patsubst pyuno_wrapper:libpyuno_wrapper.so,pyuno_wrapper:pyuno.dyn,$(gb_Library_FILENAMES)) +# libpyuno_wrapper.dylib => pyuno.so +gb_Library_FILENAMES := $(patsubst pyuno_wrapper:libpyuno_wrapper.dylib,pyuno_wrapper:pyuno.so,$(gb_Library_FILENAMES)) else # libpyuno_wrapper.so => pyuno.so gb_Library_FILENAMES := $(patsubst pyuno_wrapper:libpyuno_wrapper.so,pyuno_wrapper:pyuno.so,$(gb_Library_FILENAMES)) |