From 8e9a3120a9364db5e8c7bc2936ce153d26ddaaa4 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 7 Feb 2011 12:00:31 +0000 Subject: [PATCH 3/3] Don't distribute dbus-daemon.1 in the tarball It's generated by configure. Also use a more normal way to distribute man pages that are actually source, and use man1_MANS rather than auto-detecting the section from the man page, which is best-practice and slightly faster. --- doc/Makefile.am | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index bc349f8..1301e61 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,11 +1,13 @@ -man_MANS = \ +dist_man1_MANS = \ dbus-cleanup-sockets.1 \ - dbus-daemon.1 \ dbus-launch.1 \ dbus-monitor.1 \ dbus-send.1 \ dbus-uuidgen.1 +man1_MANS = \ + dbus-daemon.1 + MAN_IN_FILES = dbus-daemon.1.in MAN_HTML_FILES = \ @@ -35,7 +37,7 @@ STATIC_DOCS = \ EXTRA_DIST = \ file-boilerplate.c \ $(STATIC_DOCS) \ - $(MAN_IN_FILES) $(man_MANS) + $(MAN_IN_FILES) HTML_FILES= \ dbus-faq.html \ -- 1.7.2.3