Skip to content

Commit af1a868

Browse files
committed
doc: Fix GHC clean rule
Apparently GHC's build system doesn't permit wildcards in clean paths.
1 parent 67fbe48 commit af1a868

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Changes in version 2.17.1
44

55
* Fixed Makefile for GHC installation
66

7+
* Fixed clean rule of GHC Makefile
8+
79
Changes in version 2.17.0 (not released)
810

911
* Support typesetting of mathematical expressions via Mathjax (#397)

doc/ghc.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
ifeq "$(BUILD_SPHINX_HTML)" "YES"
1414
html : html_utils/haddock/doc
1515

16-
$(eval $(call clean-target,utils/haddock/doc,sphinx,utils/haddock/doc/haddock utils/haddock/doc/.build-*))
16+
$(eval $(call clean-target,utils/haddock/doc,sphinx,utils/haddock/doc/haddock utils/haddock/doc/.build-html utils/haddock/doc/.build-pdf))
1717
$(eval $(call all-target,utils/haddock/doc,html_utils/haddock/doc))
1818
INSTALL_HTML_DOC_DIRS += utils/haddock/doc/haddock
1919
endif

0 commit comments

Comments
 (0)