]> git.proxmox.com Git - mirror_spl.git/commitdiff
Remove incorrect use of EXTRA_DIST for man pages
authorBrian Behlendorf <behlendorf1@llnl.gov>
Fri, 17 Jan 2014 19:40:59 +0000 (11:40 -0800)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Fri, 17 Jan 2014 19:54:22 +0000 (11:54 -0800)
Setting the 'dist_' prefix is the correct way to instruct Automake
to include these files in the distribution.  The EXTRA_DIST variable
is reserved for files which are not covered by the automatic rules.

  http://www.gnu.org/software/automake/manual/automake.html#Basics

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
man/man1/Makefile.am
man/man5/Makefile.am

index c91f63855f277acd974721b7bdc1f796d2e0e6b1..d6becca6eadd9cc77b80a233879d0630825cbc5b 100644 (file)
@@ -1,5 +1,4 @@
-man_MANS = splat.1
-EXTRA_DIST = $(man_MANS)
+dist_man_MANS = splat.1
 
 install-data-local:
        $(INSTALL) -d -m 0755 "$(DESTDIR)$(mandir)/man1"
index 06a823325132948537f9b59a5b722f7e59082d51..fb22beb11c1ff72bd095bb02e60627d92d2d17c1 100644 (file)
@@ -1,5 +1,4 @@
-man_MANS = spl-module-parameters.5
-EXTRA_DIST = $(man_MANS)
+dist_man_MANS = spl-module-parameters.5
 
 install-data-local:
        $(INSTALL) -d -m 0755 "$(DESTDIR)$(mandir)/man5"