summaryrefslogtreecommitdiff
path: root/docs/Makefile
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2007-08-31 01:45:37 +0000
committerIan Lynagh <igloo@earth.li>2007-08-31 01:45:37 +0000
commit5c45eb1c631614bfb4ad28ed0c1d0dd85cb5dd71 (patch)
treefa63c22be84bff92c6c7722576b3578b53c623aa /docs/Makefile
parent47b417a518835b4e3b9d7a9a5bb6f1f0583e448d (diff)
downloadhaskell-5c45eb1c631614bfb4ad28ed0c1d0dd85cb5dd71.tar.gz
Make the doc index page obey DESTDIR
Diffstat (limited to 'docs/Makefile')
-rw-r--r--docs/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/Makefile b/docs/Makefile
index 62bdebd152..19d80b9bb9 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -6,7 +6,7 @@ SUBDIRS = man docbook-cheat-sheet ext-core storage-mgt users_guide
PAGES = index.html
install-docs :: $(PAGES)
- $(INSTALL_DIR) $(htmldir)
- $(INSTALL_DATA) $(INSTALL_OPTS) $(PAGES) $(htmldir)
+ $(INSTALL_DIR) $(DESTDIR)$(htmldir)
+ $(INSTALL_DATA) $(INSTALL_OPTS) $(PAGES) $(DESTDIR)$(htmldir)
include $(TOP)/mk/target.mk