From 26c05b1c8c6fe639cd4eea5decac694c86cc7c00 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Fri, 21 Dec 2007 23:47:18 -0600 Subject: Ensure that manpages are always distributed and installed Commit 012f7939784358b02726c169543aa99436439335 was a bit misguided in its thinking, and resulted in a package built without asciidoc enabled not installing the manpages to the system on a 'make install' operation. Fix this behavior by making manpages required in a normal build, and in order to disable their existence, the '--disable-doc' option must be used. Hopefully this solves manpage issues for both developers and package builders while allowing as much flexibility as possible. Signed-off-by: Dan McGee --- Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index e07321b3..307a7d68 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,7 @@ -SUBDIRS = lib/libalpm src/util src/pacman scripts doc etc po pactest contrib +SUBDIRS = lib/libalpm src/util src/pacman scripts etc po pactest contrib +if WANT_DOC +SUBDIRS += doc +endif # Some files automatically included, so they aren't specified below: # AUTHORS, COPYING, NEWS, README -- cgit v1.2.3-24-g4f1b