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 <behlendorf1@llnl.gov>
This commit is contained in:
parent
09d0b30fd1
commit
3566d5c7c3
|
@ -1,5 +1,5 @@
|
||||||
man_MANS = zhack.1 zpios.1 ztest.1
|
dist_man_MANS = zhack.1 zpios.1 ztest.1
|
||||||
EXTRA_DIST = $(man_MANS) cstyle.1
|
EXTRA_DIST = cstyle.1
|
||||||
|
|
||||||
install-data-local:
|
install-data-local:
|
||||||
$(INSTALL) -d -m 0755 "$(DESTDIR)$(mandir)/man1"
|
$(INSTALL) -d -m 0755 "$(DESTDIR)$(mandir)/man1"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
man_MANS = vdev_id.conf.5 zpool-features.5 zfs-module-parameters.5
|
dist_man_MANS = vdev_id.conf.5 zpool-features.5 zfs-module-parameters.5
|
||||||
EXTRA_DIST = $(man_MANS)
|
|
||||||
|
|
||||||
install-data-local:
|
install-data-local:
|
||||||
$(INSTALL) -d -m 0755 "$(DESTDIR)$(mandir)/man5"
|
$(INSTALL) -d -m 0755 "$(DESTDIR)$(mandir)/man5"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
man_MANS = \
|
dist_man_MANS = \
|
||||||
fsck.zfs.8 \
|
fsck.zfs.8 \
|
||||||
mount.zfs.8 \
|
mount.zfs.8 \
|
||||||
vdev_id.8 \
|
vdev_id.8 \
|
||||||
|
@ -8,7 +8,5 @@ man_MANS = \
|
||||||
zpool.8 \
|
zpool.8 \
|
||||||
zstreamdump.8
|
zstreamdump.8
|
||||||
|
|
||||||
EXTRA_DIST = $(man_MANS)
|
|
||||||
|
|
||||||
install-data-local:
|
install-data-local:
|
||||||
$(INSTALL) -d -m 0755 "$(DESTDIR)$(mandir)/man8"
|
$(INSTALL) -d -m 0755 "$(DESTDIR)$(mandir)/man8"
|
||||||
|
|
Loading…
Reference in New Issue