diff options
author | Brian Behlendorf <[email protected]> | 2014-01-17 11:21:48 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2014-01-17 11:50:08 -0800 |
commit | 3566d5c7c3cb415a53218251fc0247da55dfde46 (patch) | |
tree | a2e7f40965b709c40cbafdbb201e58ffc768c90c /man/man1/Makefile.am | |
parent | 09d0b30fd1ba08a95e86909d2e1abb2997b0a871 (diff) |
Remove incorrect use of EXTRA_DIST for man pages
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 <[email protected]>
Diffstat (limited to 'man/man1/Makefile.am')
-rw-r--r-- | man/man1/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/man/man1/Makefile.am b/man/man1/Makefile.am index 476aeed54..113cd0d80 100644 --- a/man/man1/Makefile.am +++ b/man/man1/Makefile.am @@ -1,5 +1,5 @@ -man_MANS = zhack.1 zpios.1 ztest.1 -EXTRA_DIST = $(man_MANS) cstyle.1 +dist_man_MANS = zhack.1 zpios.1 ztest.1 +EXTRA_DIST = cstyle.1 install-data-local: $(INSTALL) -d -m 0755 "$(DESTDIR)$(mandir)/man1" |