mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-28 03:49:38 +03:00
6b99fc0620
Reduce the usage of EXTRA_DIST. If files are conditionally included in _SOURCES, _HEADERS etc, automake is smart enough to dist all files that could possibly be included, but this does not apply to EXTRA_DIST, resulting in make dist depending on the configuration. Add some files that were missing altogether in various Makefile's. The changes to disted files in this commit (excluding deleted files): +./cmd/zed/agents/README.md +./etc/init.d/README.md +./lib/libspl/os/freebsd/getexecname.c +./lib/libspl/os/freebsd/gethostid.c +./lib/libspl/os/freebsd/getmntany.c +./lib/libspl/os/freebsd/mnttab.c -./lib/libzfs/libzfs_core.pc -./lib/libzfs/libzfs.pc +./lib/libzfs/os/freebsd/libzfs_compat.c +./lib/libzfs/os/freebsd/libzfs_fsshare.c +./lib/libzfs/os/freebsd/libzfs_ioctl_compat.c +./lib/libzfs/os/freebsd/libzfs_zmount.c +./lib/libzutil/os/freebsd/zutil_compat.c +./lib/libzutil/os/freebsd/zutil_device_path_os.c +./lib/libzutil/os/freebsd/zutil_import_os.c +./module/lua/README.zfs +./module/os/linux/spl/README.md +./tests/README.md +./tests/zfs-tests/tests/functional/cli_root/zfs_clone/zfs_clone_rm_nested.ksh +./tests/zfs-tests/tests/functional/cli_root/zfs_send/zfs_send_encrypted_unloaded.ksh +./tests/zfs-tests/tests/functional/inheritance/README.config +./tests/zfs-tests/tests/functional/inheritance/README.state +./tests/zfs-tests/tests/functional/rsend/rsend_016_neg.ksh +./tests/zfs-tests/tests/perf/fio/sequential_readwrite.fio Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Arvind Sankar <nivedita@alum.mit.edu> Closes #10501
102 lines
1.7 KiB
Makefile
102 lines
1.7 KiB
Makefile
dist_man_MANS = \
|
|
fsck.zfs.8 \
|
|
mount.zfs.8 \
|
|
vdev_id.8 \
|
|
zdb.8 \
|
|
zfs.8 \
|
|
zfsconcepts.8 \
|
|
zfsprops.8 \
|
|
zfs-allow.8 \
|
|
zfs-bookmark.8 \
|
|
zfs-change-key.8 \
|
|
zfs-clone.8 \
|
|
zfs-create.8 \
|
|
zfs-destroy.8 \
|
|
zfs-diff.8 \
|
|
zfs-get.8 \
|
|
zfs-groupspace.8 \
|
|
zfs-hold.8 \
|
|
zfs-inherit.8 \
|
|
zfs-jail.8 \
|
|
zfs-list.8 \
|
|
zfs-load-key.8 \
|
|
zfs-mount.8 \
|
|
zfs-program.8 \
|
|
zfs-project.8 \
|
|
zfs-projectspace.8 \
|
|
zfs-promote.8 \
|
|
zfs-receive.8 \
|
|
zfs-recv.8 \
|
|
zfs-redact.8 \
|
|
zfs-release.8 \
|
|
zfs-rename.8 \
|
|
zfs-rollback.8 \
|
|
zfs-send.8 \
|
|
zfs-set.8 \
|
|
zfs-share.8 \
|
|
zfs-snapshot.8 \
|
|
zfs-unallow.8 \
|
|
zfs-unjail.8 \
|
|
zfs-unload-key.8 \
|
|
zfs-unmount.8 \
|
|
zfs-upgrade.8 \
|
|
zfs-userspace.8 \
|
|
zfs-wait.8 \
|
|
zfs_ids_to_path.8 \
|
|
zgenhostid.8 \
|
|
zinject.8 \
|
|
zpool.8 \
|
|
zpoolconcepts.8 \
|
|
zpoolprops.8 \
|
|
zpool-add.8 \
|
|
zpool-attach.8 \
|
|
zpool-checkpoint.8 \
|
|
zpool-clear.8 \
|
|
zpool-create.8 \
|
|
zpool-destroy.8 \
|
|
zpool-detach.8 \
|
|
zpool-events.8 \
|
|
zpool-export.8 \
|
|
zpool-get.8 \
|
|
zpool-history.8 \
|
|
zpool-import.8 \
|
|
zpool-initialize.8 \
|
|
zpool-iostat.8 \
|
|
zpool-labelclear.8 \
|
|
zpool-list.8 \
|
|
zpool-offline.8 \
|
|
zpool-online.8 \
|
|
zpool-reguid.8 \
|
|
zpool-remove.8 \
|
|
zpool-reopen.8 \
|
|
zpool-replace.8 \
|
|
zpool-resilver.8 \
|
|
zpool-scrub.8 \
|
|
zpool-set.8 \
|
|
zpool-split.8 \
|
|
zpool-status.8 \
|
|
zpool-sync.8 \
|
|
zpool-trim.8 \
|
|
zpool-upgrade.8 \
|
|
zpool-wait.8 \
|
|
zstream.8 \
|
|
zstreamdump.8
|
|
|
|
nodist_man_MANS = \
|
|
zed.8 \
|
|
zfs-mount-generator.8
|
|
|
|
EXTRA_DIST = \
|
|
zed.8.in \
|
|
zfs-mount-generator.8.in
|
|
|
|
$(nodist_man_MANS): %: %.in
|
|
-$(SED) -e 's,@zfsexecdir\@,$(zfsexecdir),g' \
|
|
-e 's,@systemdgeneratordir\@,$(systemdgeneratordir),g' \
|
|
-e 's,@runstatedir\@,$(runstatedir),g' \
|
|
-e 's,@sysconfdir\@,$(sysconfdir),g' \
|
|
$< >'$@'
|
|
|
|
CLEANFILES = \
|
|
$(nodist_man_MANS)
|