diff options
author | Austin Seipp <austin@well-typed.com> | 2015-06-02 09:31:52 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2015-06-02 09:31:52 -0500 |
commit | e796026b45974d71233eef7ffb6feee482c6dd7e (patch) | |
tree | 66b37c35a6238a3b1c64f8024509340608d4f52c /rules/haddock.mk | |
parent | 091944e3aec736b440a9c1204f152004e382c967 (diff) | |
download | haskell-e796026b45974d71233eef7ffb6feee482c6dd7e.tar.gz |
build: make haddock a bit less chatty
Summary:
Haddock outputs well over a thousand lines of file output just to give
its executive summary about coverage. Kill this by default, since we
really don't need it in any setting.
Signed-off-by: Austin Seipp <austin@well-typed.com>
Test Plan: Crossed my fingers.
Reviewers: nomeata, thomie
Reviewed By: thomie
Subscribers: bgamari, thomie
Differential Revision: https://phabricator.haskell.org/D933
Diffstat (limited to 'rules/haddock.mk')
-rw-r--r-- | rules/haddock.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rules/haddock.mk b/rules/haddock.mk index a43df95066..5604a502d9 100644 --- a/rules/haddock.mk +++ b/rules/haddock.mk @@ -48,6 +48,7 @@ ifeq "$$(HSCOLOUR_SRCS)" "YES" "$$(ghc-cabal_INPLACE)" hscolour $1 $2 endif "$$(TOP)/$$(INPLACE_BIN)/haddock" \ + --verbosity=0 \ --odir="$1/$2/doc/html/$$($1_PACKAGE)" \ --no-tmp-comp-dir \ --dump-interface=$$($$($1_PACKAGE)-$$($1_$2_VERSION)_HADDOCK_FILE) \ |