Skip to content

Commit f2aff31

Browse files
peffgitster
authored andcommitted
docs: fix Makefile dependency for user manual
We use our custom xsl file to build the user manual, so make sure we depend on it. We don't use it anywhere else, so we can stick it straight in the rule. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 4ab1826 commit f2aff31

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Documentation/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ $(patsubst %,%.html,$(API_DOCS) technical/api-index): %.html : %.txt
279279
XSLT = docbook.xsl
280280
XSLTOPTS = --xinclude --stringparam html.stylesheet docbook-xsl.css
281281

282-
user-manual.html: user-manual.xml
282+
user-manual.html: user-manual.xml $(XSLT)
283283
$(QUIET_XSLTPROC)$(RM) $@+ $@ && \
284284
xsltproc $(XSLTOPTS) -o $@+ $(XSLT) $< && \
285285
mv $@+ $@

0 commit comments

Comments
 (0)