summaryrefslogtreecommitdiff
path: root/external/openssl
diff options
context:
space:
mode:
authorMichael Stahl <Michael.Stahl@cib.de>2018-10-31 19:06:30 +0100
committerTor Lillqvist <tml@collabora.com>2018-11-01 16:39:54 +0100
commita626bdd56d7116efa57e65403ad51b56657148c3 (patch)
treef48fac9d3e2fe327b59f10c1229eb43a2c3858da /external/openssl
parent4bd701a306c8068911203f976145adc717f015d2 (diff)
gbuild: rename value OS=IOS to OS=iOS
This gets rid of the horrible hack in gbuild.mk to accomodate the case-incorrect iOS platform makefiles that cannot be renamed without upsetting git on file systems that sadly lack the case sensitivity feature. Keep the macro defined to IOS though. Change-Id: I1022bfef4900da00e75fc1ccce786b20f8673234 Reviewed-on: https://gerrit.libreoffice.org/62705 Tested-by: Jenkins Reviewed-by: Michael Stahl <Michael.Stahl@cib.de> Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'external/openssl')
-rw-r--r--external/openssl/ExternalProject_openssl.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/external/openssl/ExternalProject_openssl.mk b/external/openssl/ExternalProject_openssl.mk
index c00521f9f168..24eab4ccfe58 100644
--- a/external/openssl/ExternalProject_openssl.mk
+++ b/external/openssl/ExternalProject_openssl.mk
@@ -38,7 +38,7 @@ OPENSSL_PLATFORM := \
$(if $(filter X86_64,$(CPUNAME)),solaris64-x86_64-cc,solaris-sparcv9-cc)\
)\
,\
- $(if $(filter IOS,$(OS)),\
+ $(if $(filter iOS,$(OS)),\
ios-armv7\
,\
$(if $(filter WNT,$(OS)),\
@@ -70,14 +70,14 @@ else
$(call gb_ExternalProject_get_state_target,openssl,build):
$(call gb_ExternalProject_run,build,\
unset MAKEFLAGS && \
- $(if $(filter LINUX MACOSX FREEBSD ANDROID SOLARIS IOS,$(OS)), \
+ $(if $(filter LINUX MACOSX FREEBSD ANDROID SOLARIS iOS,$(OS)), \
./Configure, \
$(if $(filter WNT,$(OS)), \
$(PERL) Configure, \
./config)) \
$(OPENSSL_PLATFORM) no-dso no-shared \
$(if $(filter-out WNT,$(OS)),no-idea) \
- $(if $(filter-out ANDROID IOS WNT,$(OS)), \
+ $(if $(filter-out ANDROID iOS WNT,$(OS)), \
$(if $(SYSBASE),-I$(SYSBASE)/usr/include -L$(SYSBASE)/usr/lib)) \
$(if $(filter MACOSX,$(OS)),--prefix=/@.__________________________________________________OOO) \
&& $(MAKE) build_libs \