From: Jim Reid Date: Fri, 29 Aug 2014 16:07:42 +0000 (-0400) Subject: RT2880: HFS is case-insensitive filenames X-Git-Tag: master-post-reformat~436 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=82d9185ae53f6ba93953ae0e484179be89c8508a;ds=sidebyside RT2880: HFS is case-insensitive filenames Add Darwin to list of case-insensitive filenames when installing manapges. When doing this, I noticed that we weren't setting "filecase" for the HTML doc install. Reviewed-by: Dr. Stephen Henson --- diff --git a/Makefile.org b/Makefile.org index 372cd38dcd..6675268672 100644 --- a/Makefile.org +++ b/Makefile.org @@ -710,6 +710,10 @@ install_sw: install_html_docs: here="`pwd`"; \ + filecase=; \ + case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin-*-cc) \ + filecase=-i; \ + esac; \ for subdir in apps crypto ssl; do \ mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \ for i in doc/$$subdir/*.pod; do \ @@ -738,7 +742,7 @@ install_docs: @pod2man="`cd ./util; ./pod2mantest $(PERL)`"; \ here="`pwd`"; \ filecase=; \ - case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*) \ + case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin-*-cc) \ filecase=-i; \ esac; \ set -e; for i in doc/apps/*.pod; do \