summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules/haddock.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/rules/haddock.mk b/rules/haddock.mk
index c87aa61b62..371d5e14df 100644
--- a/rules/haddock.mk
+++ b/rules/haddock.mk
@@ -37,6 +37,10 @@ $$($$($1_PACKAGE)_HADDOCK_FILE) : $$(MKDIRHIER) $$(INPLACE_BIN)/haddock$$(exeext
$$(MKDIRHIER) $$(dir $$@)
$$(GHC_CABAL_INPLACE) haddock $2 $1 --with-haddock=$$(TOP)/$$(INPLACE_BIN)/haddock --with-ghc=$$(TOP)/$$(INPLACE_BIN)/ghc-stage2 $$($1_$2_HADDOCK_FLAGS) $$($1_$2_HADDOCK_OPTS)
+# Make the haddocking depend on the library .a file, to ensure
+# that we wait until the library is fully build before we haddock it
+$$($$($1_PACKAGE)_HADDOCK_FILE) : $$($1_$2_v_LIB)
+
endif
endef