From f343eebdcae0680ca841543958d7da2b19118022 Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Tue, 2 Jun 2020 13:59:30 +0200 Subject: [PATCH] docs: Fix dot_rst_html_in definition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- docs/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) \