From: Andrea Bolognani Date: Tue, 2 Jun 2020 11:59:30 +0000 (+0200) Subject: docs: Fix dot_rst_html_in definition X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=f343eebdcae0680ca841543958d7da2b19118022;p=libvirt.git docs: Fix dot_rst_html_in definition As the name clearly implies, it's supposed to list the .html.in files that are generated from .rst files, but it mistakenly lists the corresponding .html files instead. Signed-off-by: Andrea Bolognani Reviewed-by: Ján Tomko --- diff --git a/docs/Makefile.am b/docs/Makefile.am index ce3d296b19..ba538e55a0 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -325,7 +325,7 @@ dot_html_in = \ dot_rst = \ $(notdir $(wildcard $(srcdir)/*.rst)) dot_rst_html_in = \ - $(dot_rst:%.rst=%.html) + $(dot_rst:%.rst=%.html.in) dot_html = \ $(dot_html_generated_in:%.html.in=%.html) \ $(dot_html_in:%.html.in=%.html) \