diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2022-01-08 06:47:02 +0100 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2022-01-08 12:26:30 +0100 |
commit | ed1aa172f8807ee479e4f529df49d19c13a8bc86 (patch) | |
tree | 61352b390a5be1575d5c07b509b26889187cc90a /idlc | |
parent | 92a90cf5ccb998d2fcc77a62bb971534e410cdec (diff) |
Unify condition names and fix "else" paths
Drop Build prefix and settle on Lib and Exe prefixes. Also add a
note about the "else" part of the condition and fix offenders.
While at it, define COND_LIB_SAL_TEXTENC to be used by sal to
prevent diverting coditions in build and cxx code.
Change-Id: I944587ca1ccbe46b765d1a631a7214c8126fe951
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128136
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/Executable_idlc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/idlc/Executable_idlc.mk b/idlc/Executable_idlc.mk index f2f79dcb8911..8af0c40f111a 100644 --- a/idlc/Executable_idlc.mk +++ b/idlc/Executable_idlc.mk @@ -75,7 +75,7 @@ $(eval $(call gb_Executable_add_exception_objects,idlc,\ # to something other than listed in Impl_getTextEncodingData, because osl_getThreadTextEncoding() # returns Windows ACP, calling FullTextEncodingData ctor which loads the not-yet-built library $(call gb_Executable_add_runtime_dependencies,idlc, \ - $(call gb_Library_get_target,sal_textenc) \ + $(call gb_CondLibSalTextenc,$(call gb_Library_get_target,sal_textenc)) \ ) # vim:set noet sw=4 ts=4: |