xmlsecurity/Module_xmlsecurity.mk | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-)
New commits: commit 5ffeaceeea9977667a7928608f36735532727c58 Author: Tor Lillqvist <[email protected]> AuthorDate: Wed Oct 9 14:01:19 2024 +0300 Commit: Miklos Vajna <[email protected]> CommitDate: Tue Dec 2 08:38:05 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]> 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
