summaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2013-09-15 21:59:25 +0200
committerAndy Polyakov <appro@openssl.org>2013-09-15 22:01:23 +0200
commitb3ef742cbbc1c8bf0e33dca60f08c65031647b07 (patch)
tree861495fc6f1590f7bb2f05d29c6ea6a4d43ef9cf /engines
parent612f4e2384e4cfecef42734b8b7d988cf849e74e (diff)
Add support for Cygwin-x86_64.
PR: 3110 Submitted by Corinna Vinschen.
Diffstat (limited to 'engines')
-rw-r--r--engines/Makefile2
-rw-r--r--engines/ccgost/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/Makefile b/engines/Makefile
index 786716c11b..4bad384bfb 100644
--- a/engines/Makefile
+++ b/engines/Makefile
@@ -120,7 +120,7 @@ install:
for l in $(LIBNAMES); do \
( echo installing $$l; \
pfx=lib; \
- if [ "$(PLATFORM)" != "Cygwin" ]; then \
+ if ! expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
case "$(CFLAGS)" in \
*DSO_BEOS*) sfx=".so";; \
*DSO_DLFCN*) sfx=`expr "$(SHLIB_EXT)" : '.*\(\.[a-z][a-z]*\)' \| ".so"`;; \
diff --git a/engines/ccgost/Makefile b/engines/ccgost/Makefile
index c420237c8d..97fac82d6b 100644
--- a/engines/ccgost/Makefile
+++ b/engines/ccgost/Makefile
@@ -47,7 +47,7 @@ install:
set -e; \
echo installing $(LIBNAME); \
pfx=lib; \
- if [ "$(PLATFORM)" != "Cygwin" ]; then \
+ if ! expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
case "$(CFLAGS)" in \
*DSO_BEOS*) sfx=".so";; \
*DSO_DLFCN*) sfx=`expr "$(SHLIB_EXT)" : '.*\(\.[a-z][a-z]*\)' \| ".so"`;; \