diff options
author | Stephan Hadamik <stephanhadamik@gmail.com> | 2016-03-17 22:32:23 +0100 |
---|---|---|
committer | Stephan Hadamik <stephanhadamik@gmail.com> | 2016-03-17 22:32:23 +0100 |
commit | 76f882006e6e8eedb593b9de0e99ced5e33bf94f (patch) | |
tree | 9e9097d1077020050b0543e2f85dc8955d3903eb | |
parent | 94ba19a03f6330a0e9af5ab5e4b252a2f6366f71 (diff) |
[depends/openssl] - fix Makefile comment
-rw-r--r-- | tools/depends/target/openssl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/depends/target/openssl/Makefile b/tools/depends/target/openssl/Makefile index ae283269f6..1637aae6d2 100644 --- a/tools/depends/target/openssl/Makefile +++ b/tools/depends/target/openssl/Makefile @@ -38,9 +38,10 @@ $(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS) sed -ie "s|CC= /usr/bin/gcc-4.2|CC= $(CC)|" "$(PLATFORM)/Makefile"; \ sed -ie "s|CFLAG= |CFLAG=$(CFLAGS) |" "$(PLATFORM)/Makefile"; \ fi + # for iphoneos-cross config a sysroot argument is added + # however sysroot already set in Makefile.include, so remove this if test "$(OS)" = "ios"; then \ sed -ie "s|CFLAG= |CFLAG=$(CFLAGS) |" "$(PLATFORM)/Makefile"; \ - # sysroot already set in Makefile.include, remove it sed -ie "s|-isysroot \$$(CROSS_TOP)/SDKs/\$$(CROSS_SDK) ||" "$(PLATFORM)/Makefile"; \ sed -ie "s|static volatile sig_atomic_t intr_signal;|static volatile intr_signal;|" "$(PLATFORM)/crypto/ui/ui_openssl.c"; \ fi |