This is an automated email from the ASF dual-hosted git repository.
ardovm pushed a commit to branch openssl
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/openssl by this push:
new 8e532dff41 Fix the check for "SYSTEM_OPENSSL"
8e532dff41 is described below
commit 8e532dff410bf4df96063e0df57b64c1345da90a
Author: Arrigo Marchiori <[email protected]>
AuthorDate: Mon May 2 21:45:35 2022 +0200
Fix the check for "SYSTEM_OPENSSL"
Libraries were always (tentatively) included due to improper quoting
---
main/scp2/source/ooo/makefile.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main/scp2/source/ooo/makefile.mk b/main/scp2/source/ooo/makefile.mk
index 10f4805b39..13791ee7e1 100644
--- a/main/scp2/source/ooo/makefile.mk
+++ b/main/scp2/source/ooo/makefile.mk
@@ -223,7 +223,7 @@ SCPDEFS+=-DSYSTEM_NEON
.ENDIF
# if yes or unset (neon not used) -> do not install openssl library!
-.IF $(SYSTEM_OPENSSL) != "YES"
+.IF "$(SYSTEM_OPENSSL)" != "YES"
SCPDEFS+=-DOPENSSL
.ENDIF