From 0d126b9c0dc9299a860fc6bb0e1dee05eb583de2 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 16 Mar 2007 17:00:03 +0000 Subject: [PATCH] Don't break when asked to install-docs (we don't actually do anything useful either, because Cabal doesn't have an install-docs option). --- libraries/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libraries/Makefile b/libraries/Makefile index 30043ff..82cf02e 100644 --- a/libraries/Makefile +++ b/libraries/Makefile @@ -146,7 +146,7 @@ doc.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \ %/setup/Setup cd $* && setup/Setup haddock -.PHONY: install.library.% +.PHONY: install install-docs install.library.% INSTALL_DIR=$(prefix)/share/ghc/doc/html/ @@ -158,6 +158,10 @@ install: $(foreach SUBDIR,$(SUBDIRS),install.library.$(SUBDIR)) $(INSTALL_DATA) $(prefix)/share/ghc/doc/html/base/*.js $(INSTALL_DIR) $(INSTALL_DATA) $(prefix)/share/ghc/doc/html/base/*.gif $(INSTALL_DIR) +# Cabal doesn't let us ask to install docs only, so do nothing here +install-docs: + @: + # Ideally this would depend on a stamp/build.library.%, but if it does # then we can't change the libraries and then just rerun make. # Thus if you install without building then it will just break. -- 1.7.10.4