diff options
author | Ben Gamari <ben@smart-cactus.org> | 2016-05-12 10:01:46 +0200 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-05-12 10:05:33 +0200 |
commit | af1a8689da1990da9a152ae8a0e51976f2a27ff6 (patch) | |
tree | 0b7bc2846311644396fc23c3ef26c8ddd850a00e /doc | |
parent | 67fbe48b9e6830d231b19c3d72960d3e9e137ea0 (diff) |
doc: Fix GHC clean rule
Apparently GHC's build system doesn't permit wildcards in clean paths.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ ifeq "$(BUILD_SPHINX_HTML)" "YES" html : html_utils/haddock/doc -$(eval $(call clean-target,utils/haddock/doc,sphinx,utils/haddock/doc/haddock utils/haddock/doc/.build-*)) +$(eval $(call clean-target,utils/haddock/doc,sphinx,utils/haddock/doc/haddock utils/haddock/doc/.build-html utils/haddock/doc/.build-pdf)) $(eval $(call all-target,utils/haddock/doc,html_utils/haddock/doc)) INSTALL_HTML_DOC_DIRS += utils/haddock/doc/haddock endif |