From: Mike Frysinger Date: Thu, 20 Oct 2011 04:54:13 +0000 (-0400) Subject: build: include man-pages for non-default progs X-Git-Tag: v8.15~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5b498c09ab399d1c721e30d38a2837dca2b73e9;p=thirdparty%2Fcoreutils.git build: include man-pages for non-default progs At the moment, things like man/arch.1 are not included in the tarball. This makes perl a requirement if you want to build/install the arch helper. * man/Makefile.am (EXTRA_DIST): Add $(NO_INSTALL_PROGS_DEFAULT:%=%.1). --- diff --git a/man/Makefile.am b/man/Makefile.am index cb4408c162..8733a35919 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -19,7 +19,8 @@ dist_man1_MANS = $(MAN) man_aux = $(dist_man1_MANS:.1=.x) -EXTRA_DIST = $(man_aux) $(NO_INSTALL_PROGS_DEFAULT:%=%.x) help2man +EXTRA_DIST = $(man_aux) $(NO_INSTALL_PROGS_DEFAULT:%=%.x) help2man \ + $(NO_INSTALL_PROGS_DEFAULT:%=%.1) MAINTAINERCLEANFILES = $(dist_man1_MANS) # Depend on ../.version to get version number changes.