build: fix `doc_html` target

ref 24f2cc55a8 #9430
This commit is contained in:
Justin M. Keyes 2019-01-04 02:17:18 +01:00
parent c403a95a52
commit 685b2028dc
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ else
endif
helptags: | nvim
+$(BUILD_CMD) -C build helptags
+$(BUILD_CMD) -C build runtime/doc/tags
# Builds help HTML _and_ checks for invalid help tags.
helphtml: | nvim helptags

View File

@ -78,7 +78,7 @@ add_custom_command(OUTPUT ${GENERATED_HELP_TAGS}
add_custom_target(doc_html
COMMAND make html
DEPENDS
helptags
${GENERATED_HELP_TAGS}
WORKING_DIRECTORY "${GENERATED_RUNTIME_DIR}/doc"
)