xmlsecurity/Module_xmlsecurity.mk |    8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

New commits:
commit 64a8aba7f372354dcba044c640f4f7b2e1557114
Author:     Tor Lillqvist <[email protected]>
AuthorDate: Wed Oct 9 14:01:19 2024 +0300
Commit:     Caolán McNamara <[email protected]>
CommitDate: Tue Dec 2 17:13:28 2025 +0100

    Add apparently missing check on missing both ENABLE_NSS and ENABLE_OPENSSL
    
    Not sure if such a build makes sense, but it was something I tried
    (and disregarded), and we have similar conditionals elsewhere.
    
    Change-Id: Ic9d99e0acb70bdcf769e46a4dcdd27e340a905b7
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194556
    Reviewed-by: Michael Stahl <[email protected]>
    Tested-by: Jenkins CollaboraOffice <[email protected]>
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194912
    Reviewed-by: Caolán McNamara <[email protected]>
    Tested-by: Jenkins

diff --git a/xmlsecurity/Module_xmlsecurity.mk 
b/xmlsecurity/Module_xmlsecurity.mk
index f2cdbee6ffa8..076602082632 100644
--- a/xmlsecurity/Module_xmlsecurity.mk
+++ b/xmlsecurity/Module_xmlsecurity.mk
@@ -11,8 +11,10 @@ $(eval $(call gb_Module_Module,xmlsecurity))
 
 $(eval $(call gb_Module_add_targets,xmlsecurity,\
        Library_xmlsecurity \
-       $(if $(ENABLE_NSS)$(ENABLE_OPENSSL),Library_xsec_xmlsec) \
-       UIConfig_xmlsec \
+       $(if $(ENABLE_NSS)$(ENABLE_OPENSSL),\
+           Library_xsec_xmlsec \
+           UIConfig_xmlsec \
+       ) \
 ))
 
 $(eval $(call gb_Library_use_custom_headers,xmlsecurity,\
@@ -35,7 +37,7 @@ $(eval $(call 
gb_Module_add_subsequentcheck_targets,xmlsecurity,\
 ))
 
 $(eval $(call gb_Module_add_l10n_targets,xmlsecurity,\
-       AllLangMoTarget_xsc \
+       $(if $(ENABLE_NSS)$(ENABLE_OPENSSL),AllLangMoTarget_xsc) \
 ))
 
 # failing

Reply via email to