From 25573312894ce40528d77ee4529bbdb2397f13b8 Mon Sep 17 00:00:00 2001 From: Jens Georg Date: Thu, 31 May 2012 10:56:45 +0200 Subject: [PATCH] doc: Follow advice from Automake doc Don't use the general dist_man_MANS but the specific section variables. --- doc/Makefile.am | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index 49a53c0..0960fb9 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,5 +1,7 @@ -dist_man_MANS = \ - rygel.1 \ +dist_man1_MANS = \ + rygel.1 + +dist_man5_MANS = \ rygel.conf.5 EXTRA_DIST = \ @@ -11,5 +13,5 @@ if HAVE_XSLTPROC %.5 %.1: man/%.xml $(XSLTPROC) -o $@ -nonet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< CLEANFILES = \ - $(dist_man_MANS) + $(dist_man1_MANS) $(dist_man5_MANS) endif -- 2.7.4