Skip to content

Commit

Permalink
Remove incorrect use of EXTRA_DIST for man pages
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
behlendorf committed Jan 17, 2014
1 parent d58a99a commit 4c99541
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions man/man1/Makefile.am
Original file line number Diff line number Diff line change
@@ -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"
3 changes: 1 addition & 2 deletions man/man5/Makefile.am
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 4c99541

Please sign in to comment.