summaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2014-08-30 10:18:51 -0400
committerRich Salz <rsalz@akamai.com>2014-08-30 10:18:51 -0400
commit457f7b14ecce885dce0b1a16bcd0723f1d7a2792 (patch)
tree46690d2230f2056570a48b8dd8eebd563be59e0c /Makefile.org
parentd1bea969e8dacf76d6b9c94110ca716ce24df283 (diff)
RT2820: case-insensitive filenames on Darwin
Andy pointed out there is also darwin64, so tweak the pattern. Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.org b/Makefile.org
index 6675268672..1b8b4dbff1 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -711,7 +711,7 @@ install_sw:
install_html_docs:
here="`pwd`"; \
filecase=; \
- case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin-*-cc) \
+ case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
filecase=-i; \
esac; \
for subdir in apps crypto ssl; do \
@@ -742,7 +742,7 @@ install_docs:
@pod2man="`cd ./util; ./pod2mantest $(PERL)`"; \
here="`pwd`"; \
filecase=; \
- case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin-*-cc) \
+ case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
filecase=-i; \
esac; \
set -e; for i in doc/apps/*.pod; do \