diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-29 22:08:29 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-29 22:08:29 +0200 |
commit | a67e6ae04086f2f60bb9747fbfc09a5a3d303d84 (patch) | |
tree | 73beda852d3fa90757bf8d5c238e5bac4dc2102d /jurt | |
parent | 02f57e36bf28312c4163d2240bbfe913d1b13823 (diff) |
Precise, platform-specific Class-Path path for NativeLibraryLoader use
Change-Id: I01a521f5d5104bf2e6046330e2d667155c27a604
Diffstat (limited to 'jurt')
-rw-r--r-- | jurt/Jar_jurt.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/jurt/Jar_jurt.mk b/jurt/Jar_jurt.mk index da814ee70c25..aed0d05a34cd 100644 --- a/jurt/Jar_jurt.mk +++ b/jurt/Jar_jurt.mk @@ -19,7 +19,11 @@ $(eval $(call gb_Jar_set_packageroot,jurt,com)) $(eval $(call gb_Jar_set_manifest,jurt,$(SRCDIR)/jurt/util/manifest)) $(eval $(call gb_Jar_add_manifest_classpath,jurt, \ - ridl.jar unoloader.jar ../../lib/ ../bin/)) + ridl.jar \ + unoloader.jar \ + $(if $(filter MACOSX,$(OS)),../../Frameworks/, \ + $(if $(filter WNT,$(OS)),../bin/,../../lib/)) \ +)) $(eval $(call gb_Jar_add_sourcefiles,jurt,\ jurt/com/sun/star/comp/bridgefactory/BridgeFactory \ |