summaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorJim Reid <jim@rfc1035.com>2014-08-29 12:07:42 -0400
committerRich Salz <rsalz@akamai.com>2014-08-29 16:39:38 -0400
commit12dabfc560a8bf55f771e79775f577d47012c1e0 (patch)
treec0b7aaf02be2d79115e034f02802afef79deed8e /Makefile.org
parent39d64e935105c8f7c73f45be2eb6b8a488a9d6d1 (diff)
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 <steve@openssl.org> (cherry picked from commit 82d9185ae53f6ba93953ae0e484179be89c8508a)
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.org b/Makefile.org
index 9041e274d3..975e1201cc 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -612,6 +612,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 \
@@ -640,7 +644,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 \