diff options
author | Austin Seipp <austin@well-typed.com> | 2014-03-31 06:47:44 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-03-31 06:47:47 -0500 |
commit | 52c6dc970272437aa83a936fc1fe63977fa6178d (patch) | |
tree | 8bd13180867c8a6fc973dd81f23982bce385b3ad /ghc.mk | |
parent | 345eea26ee740436728547d997a6f7ee5cea50a5 (diff) | |
download | haskell-52c6dc970272437aa83a936fc1fe63977fa6178d.tar.gz |
Temporarily fight off build bogons on OS X
Right now there's a bug with Clang that prevents 'cabal haddock' from
working nicely. But there's an easy fix for now.
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'ghc.mk')
-rw-r--r-- | ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1350,7 +1350,7 @@ validate_build_xhtml: cd libraries/xhtml && ./Setup configure --with-ghc="$(BINDIST_PREFIX)/bin/ghc" $(BINDIST_HADDOCK_FLAG) $(BINDIST_LIBRARY_FLAGS) --global --builddir=dist-bindist --prefix="$(BINDIST_PREFIX)" cd libraries/xhtml && ./Setup build --builddir=dist-bindist ifeq "$(HADDOCK_DOCS)" "YES" - cd libraries/xhtml && ./Setup haddock --builddir=dist-bindist + cd libraries/xhtml && ./Setup haddock --ghc-options=-optP-P --builddir=dist-bindist endif cd libraries/xhtml && ./Setup install --builddir=dist-bindist cd libraries/xhtml && ./Setup clean --builddir=dist-bindist |