diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-10-27 23:43:58 +0100 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-12-17 20:25:14 +0100 |
commit | 116ba5e702916a938ab72970437efa5fd26287b7 (patch) | |
tree | 3a50255bf049fddc1bb9a92fdefb7174b9cfb3e3 /ghc.mk | |
parent | 272e1cc811e5d693d8a36e63c90a1ece68a0495a (diff) | |
download | haskell-116ba5e702916a938ab72970437efa5fd26287b7.tar.gz |
Build system: allow bindist without docs
Useful for testing 'make binary-dist-prep' when HADDOCK_DOCS=NO.
Reviewed by: bgamari
Differential Revision: https://phabricator.haskell.org/D1648
Diffstat (limited to 'ghc.mk')
-rw-r--r-- | ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1039,7 +1039,7 @@ $(eval $(call bindist-list,.,\ $(INSTALL_LIBRARY_DOCS) \ $(addsuffix /*,$(INSTALL_HTML_DOC_DIRS)) \ docs/index.html \ - compiler/stage2/doc \ + $(wildcard compiler/stage2/doc) \ $(wildcard libraries/*/dist-install/doc/) \ $(wildcard libraries/*/*/dist-install/doc/) \ $(filter-out settings,$(INSTALL_LIBS)) \ |