From 77c44a1d884e139000a22f1b5f35243ac44017e4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Wed, 20 Jul 2016 13:56:38 -0400 Subject: [PATCH] Fix: Mark ASCIIDOC_ATTRS_CONF as a dependency of man page targets MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit ASCIIDOC_ATTRS_CONF contains the various paths set by autoconf, such as datadir, syscondif and prefix, and it may be changed by the user by invoking ./configure with different options. In such a case, the man pages should be regenerated to take the new paths into account. Signed-off-by: Jérémie Galarneau --- doc/man/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/man/Makefile.am b/doc/man/Makefile.am index f75db6ed4..8c1472e87 100644 --- a/doc/man/Makefile.am +++ b/doc/man/Makefile.am @@ -63,7 +63,7 @@ XSL_FILES = \ XSL_SRC_FILES = $(addprefix $(srcdir)/xsl/,$(XSL_FILES)) # common dependencies -COMMON_DEPS = $(ASCIIDOC_CONF) $(COMMON_TXT) +COMMON_DEPS = $(ASCIIDOC_CONF) $(COMMON_TXT) $(ASCIIDOC_ATTRS_CONF) # man pages destinations MAN1 = $(addsuffix .1,$(MAN1_NAMES)) -- 2.34.1