Skip to content
Snippets Groups Projects
Commit fea4b0a3 authored by Ben Gamari's avatar Ben Gamari :turtle:
Browse files

doc: At long last fix ghc.mk

The variable reference was incorrectly escaped, meaning that Sphinx
documentation was never installed.

(cherry picked from commit 609018dd)
parent 3b980e7f
No related branches found
No related tags found
No related merge requests found
......@@ -10,11 +10,11 @@
#
# -----------------------------------------------------------------------------
ifeq "$$(BUILD_SPHINX_HTML)" "YES"
ifeq "$(BUILD_SPHINX_HTML)" "YES"
INSTALL_HTML_DOC_DIRS += utils/haddock/doc/haddock
endif
html : html_utils/haddock/doc
endif
html_utils/haddock/doc :
make -C utils/haddock/doc html SPHINX_BUILD=$(SPHINXBUILD)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment