diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-09-08 13:51:44 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-09-08 18:25:02 +0200 |
commit | 1b8eca18fc2bb9ccb4fd3246ac48318975574722 (patch) | |
tree | 5a5dea7dcc60551d187e52c73adbed6ede304f3a /configure.ac | |
parent | e4a73f4fa1cc9681aee3ce13ee15073deed54635 (diff) | |
download | haskell-1b8eca18fc2bb9ccb4fd3246ac48318975574722.tar.gz |
Build system: check for inconsistent settings (#10157)
`configure` currently detects when the docbook and hscolour tools aren't
available, and instead of failing outright (as it does for missing alex
and happy), sets some variables in mk/config.mk to tell `make` not to
build the documentation.
Sometimes, however, you want to really make sure all documentation gets
built, fully colourized. For example when making a release. To do so,
you can override the mentioned variables from mk/config.mk in
mk/build.mk (e.g. set HSCOLOUR_SRCS=YES).
This patch adds some error checking to make sure that doing so will not
result in weird build failures when those tools are still missing.
Test Plan: ran `make` a couple of times, with different mk/config.mk settings.
Reviewed by: austin
Differential Revision: https://phabricator.haskell.org/D1232
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 47b07ddcad..406a4a60d4 100644 --- a/configure.ac +++ b/configure.ac @@ -1199,9 +1199,9 @@ echo ["\ fi echo ["\ - Building DocBook HTML documentation : $BUILD_DOCBOOK_HTML - Building DocBook PS documentation : $BUILD_DOCBOOK_PS - Building DocBook PDF documentation : $BUILD_DOCBOOK_PDF"] + Can build DocBook HTML documentation : $BUILD_DOCBOOK_HTML + Can build DocBook PS documentation : $BUILD_DOCBOOK_PS + Can build DocBook PDF documentation : $BUILD_DOCBOOK_PDF"] echo ["---------------------------------------------------------------------- "] |