Kaydet (Commit) 88960707 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Use correct paths to URE stuff on Windows

For some historical reason, URE has no "share" subfolder on Windows.

Change-Id: I530e673cc7a5cb5fe5d82a5e952ac50e4c2270b2
üst 33521daf
...@@ -2908,11 +2908,11 @@ elif test $_os = WINNT; then ...@@ -2908,11 +2908,11 @@ elif test $_os = WINNT; then
LIBO_SHARE_PRESETS_FOLDER=presets LIBO_SHARE_PRESETS_FOLDER=presets
LIBO_SHARE_RESOURCE_FOLDER=program/resource LIBO_SHARE_RESOURCE_FOLDER=program/resource
LIBO_SHARE_SHELL_FOLDER=program/shell LIBO_SHARE_SHELL_FOLDER=program/shell
LIBO_URE_BIN_FOLDER=ure-link/bin LIBO_URE_BIN_FOLDER=URE/bin
LIBO_URE_ETC_FOLDER=ure-link/bin LIBO_URE_ETC_FOLDER=URE/bin
LIBO_URE_LIB_FOLDER=ure-link/bin LIBO_URE_LIB_FOLDER=URE/bin
LIBO_URE_SHARE_FOLDER=ure-link/share LIBO_URE_SHARE_FOLDER=URE
LIBO_URE_SHARE_JAVA_FOLDER=ure-link/java LIBO_URE_SHARE_JAVA_FOLDER=URE/java
else else
LIBO_BIN_FOLDER=program LIBO_BIN_FOLDER=program
LIBO_ETC_FOLDER=program LIBO_ETC_FOLDER=program
......
...@@ -220,6 +220,8 @@ ProfileItem gid_Profileitem_Dl_Uno_Ure_Internal_Java_Dir ...@@ -220,6 +220,8 @@ ProfileItem gid_Profileitem_Dl_Uno_Ure_Internal_Java_Dir
Key = "URE_INTERNAL_JAVA_DIR"; Key = "URE_INTERNAL_JAVA_DIR";
#if defined ENABLE_MACOSX_MACLIKE_APP_STRUCTURE #if defined ENABLE_MACOSX_MACLIKE_APP_STRUCTURE
Value = "${ORIGIN}/../java"; Value = "${ORIGIN}/../java";
#elif defined WNT
Value = "${ORIGIN}/../java";
#else #else
Value = "${ORIGIN}/../share/java"; Value = "${ORIGIN}/../share/java";
#endif #endif
...@@ -240,6 +242,8 @@ ProfileItem gid_Profileitem_Dl_Uno_Uno_Types ...@@ -240,6 +242,8 @@ ProfileItem gid_Profileitem_Dl_Uno_Uno_Types
Key = "UNO_TYPES"; Key = "UNO_TYPES";
#if defined ENABLE_MACOSX_MACLIKE_APP_STRUCTURE #if defined ENABLE_MACOSX_MACLIKE_APP_STRUCTURE
Value = "${ORIGIN}/types.rdb ${URE_MORE_TYPES}"; Value = "${ORIGIN}/types.rdb ${URE_MORE_TYPES}";
#elif defined WNT
Value = "${ORIGIN}/../misc/types.rdb ${URE_MORE_TYPES}";
#else #else
Value = "${ORIGIN}/../share/misc/types.rdb ${URE_MORE_TYPES}"; Value = "${ORIGIN}/../share/misc/types.rdb ${URE_MORE_TYPES}";
#endif #endif
...@@ -252,6 +256,8 @@ ProfileItem gid_Profileitem_Dl_Uno_Uno_Services ...@@ -252,6 +256,8 @@ ProfileItem gid_Profileitem_Dl_Uno_Uno_Services
Key = "UNO_SERVICES"; Key = "UNO_SERVICES";
#if defined ENABLE_MACOSX_MACLIKE_APP_STRUCTURE #if defined ENABLE_MACOSX_MACLIKE_APP_STRUCTURE
Value = "${ORIGIN}/services.rdb ${URE_MORE_SERVICES}"; Value = "${ORIGIN}/services.rdb ${URE_MORE_SERVICES}";
#elif defined WNT
Value = "${ORIGIN}/../misc/services.rdb ${URE_MORE_SERVICES}";
#else #else
Value = "${ORIGIN}/../share/misc/services.rdb ${URE_MORE_SERVICES}"; Value = "${ORIGIN}/../share/misc/services.rdb ${URE_MORE_SERVICES}";
#endif #endif
......
...@@ -15,7 +15,10 @@ ...@@ -15,7 +15,10 @@
# except in compliance with the License. You may obtain a copy of # except in compliance with the License. You may obtain a copy of
# the License at http://www.apache.org/licenses/LICENSE-2.0 . # the License at http://www.apache.org/licenses/LICENSE-2.0 .
# #
# This is the uno.ini file from ure/source # This is the uno.ini file from ure/source. Note that this file is
# copied into solver, but no longer copied into the installset, but
# used in solver only during build. The URE uno.ini in the installset is
# constructed from scp stanzas in scp2/source/ooo/ure.scp.
# #
[Bootstrap] [Bootstrap]
URE_INTERNAL_LIB_DIR=${ORIGIN} URE_INTERNAL_LIB_DIR=${ORIGIN}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment