summaryrefslogtreecommitdiff
path: root/ghc.mk
diff options
context:
space:
mode:
authorBen Gamari <ben@well-typed.com>2015-11-16 16:56:12 +0200
committerBen Gamari <ben@smart-cactus.org>2015-11-16 21:59:46 +0100
commit7485d0ce03247ca573073738aba34a66e01180a8 (patch)
tree41cd5c879aa8dafa3b74f374bda65c4ca130e105 /ghc.mk
parent69822f0c5b67161b4d7558081bc94f6f3a7c5dbb (diff)
downloadhaskell-7485d0ce03247ca573073738aba34a66e01180a8.tar.gz
ghc.mk: Make install_docs rule sh-compatible
Diffstat (limited to 'ghc.mk')
-rw-r--r--ghc.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/ghc.mk b/ghc.mk
index 5e74b7b01b..caa903ddf1 100644
--- a/ghc.mk
+++ b/ghc.mk
@@ -929,14 +929,14 @@ ifneq "$(INSTALL_LIBRARY_DOCS)" ""
$(INSTALL_SCRIPT) $(INSTALL_OPTS) libraries/gen_contents_index "$(DESTDIR)$(docdir)/html/libraries/"
endif
ifneq "$(INSTALL_HTML_DOC_DIRS)" ""
+ # We need to filter out the directories so install doesn't choke on them
for i in $(INSTALL_HTML_DOC_DIRS); do \
$(INSTALL_DIR) "$(DESTDIR)$(docdir)/html/`basename $$i`"; \
- for f in $$i/*; do \
-# We filter out the directories so install doesn't choke on them \
- if test -f $$f; then \
- $(INSTALL_DOC) $(INSTALL_OPTS) "$$f" "$(DESTDIR)$(docdir)/html/`basename $$i`"; \
- fi \
- done \
+ for f in $$i/*; do \
+ if test -f $$f; then \
+ $(INSTALL_DOC) $(INSTALL_OPTS) "$$f" "$(DESTDIR)$(docdir)/html/`basename $$i`"; \
+ fi \
+ done \
done
endif