From: Rich Salz Date: Sat, 30 Aug 2014 14:18:51 +0000 (-0400) Subject: RT2820: case-insensitive filenames on Darwin X-Git-Tag: OpenSSL_1_0_2-beta3~67 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=63eacabb6146fc7c4a856e80206a55aa25c96804;p=openssl RT2820: case-insensitive filenames on Darwin Andy pointed out there is also darwin64, so tweak the pattern. Reviewed-by: Andy Polyakov (cherry picked from commit 457f7b14ecce885dce0b1a16bcd0723f1d7a2792) --- diff --git a/Makefile.org b/Makefile.org index 975e1201cc..90fec54708 100644 --- a/Makefile.org +++ b/Makefile.org @@ -613,7 +613,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 \ @@ -644,7 +644,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 \