Skip to content
Snippets Groups Projects
Commit 7b5ba197 authored by Ian Lynagh's avatar Ian Lynagh
Browse files

Fix installation in the GHC build system

parent a1ba51db
No related branches found
No related tags found
No related merge requests found
......@@ -24,9 +24,16 @@ utils/haddock_dist_MODULES += Paths_haddock
install: install_utils/haddock_html
.PHONY: install_utils/haddock_html
install_utils/haddock_html:
"$(RM)" $(RM_OPTS) -r $(DESTDIR)$(docdir)/html
$(INSTALL_DIR) $(DESTDIR)$(docdir)/html
"$(CP)" -R utils/haddock/html $(DESTDIR)$(docdir)/html
install: install_utils/haddock_data
.PHONY: install_utils/haddock_data
install_utils/haddock_data:
$(INSTALL_DIR) $(DESTDIR)$(ghclibdir)/html
for i in utils/haddock/html/*; do \
$(INSTALL_DATA) $(INSTALL_OPTS) $$i $(DESTDIR)$(ghclibdir)/html; \
done
BINDIST_EXTRAS += $(addprefix utils/haddock/,html/*)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment