summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2009-10-23 14:35:12 +0000
committerIan Lynagh <igloo@earth.li>2009-10-23 14:35:12 +0000
commit40aeca610ef70b5010248cfd5d6b6f823955f457 (patch)
treec105809e0f6cf92936c82f7be4a675c4872f5346
parentd718bdb80858044b2a6c0f9177f2acd2afa16d24 (diff)
downloadhaskell-40aeca610ef70b5010248cfd5d6b6f823955f457.tar.gz
Don't build PS/PDF docs when validating
dblatex with miktex under msys/mingw can't build the PS and PDF docs, and just building the HTML docs is sufficient to check that the markup is correct, so we turn off PS and PDF doc building when validating.
-rw-r--r--mk/validate-settings.mk7
1 files changed, 7 insertions, 0 deletions
diff --git a/mk/validate-settings.mk b/mk/validate-settings.mk
index b91a88e086..322aaef658 100644
--- a/mk/validate-settings.mk
+++ b/mk/validate-settings.mk
@@ -22,6 +22,13 @@ STRIP = :
CHECK_PACKAGES = YES
+# dblatex with miktex under msys/mingw can't build the PS and PDF docs,
+# and just building the HTML docs is sufficient to check that the
+# markup is correct, so we turn off PS and PDF doc building when
+# validating.
+BUILD_DOCBOOK_PS = NO
+BUILD_DOCBOOK_PDF = NO
+
ifeq "$(ValidateHpc)" "YES"
GhcStage2HcOpts += -fhpc -hpcdir $(TOP)/testsuite/hpc_output/
endif