mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 18:11:00 +03:00
2476f10306
Update tests to use the variables for tunable names. Reviewed-by: John Kennedy <john.kennedy@delphix.com> Reviewed-by: Kjeld Schouten <kjeld@schouten-lebbing.nl> Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ryan Moeller <ryan@ixsystems.com> Closes #9831
23 lines
507 B
Makefile
23 lines
507 B
Makefile
pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/include
|
|
dist_pkgdata_DATA = \
|
|
blkdev.shlib \
|
|
commands.cfg \
|
|
libtest.shlib \
|
|
math.shlib \
|
|
properties.shlib \
|
|
tunables.cfg \
|
|
zpool_script.shlib
|
|
|
|
EXTRA_DIST = default.cfg.in
|
|
|
|
nodist_pkgdata_DATA = default.cfg
|
|
|
|
$(nodist_pkgdata_DATA): %: %.in
|
|
-$(SED) -e 's,@zfsexecdir\@,$(zfsexecdir),g' \
|
|
-e 's,@sysconfdir\@,$(sysconfdir),g' \
|
|
$< >'$@'
|
|
|
|
# Double-colon rules are allowed; there are multiple independent definitions.
|
|
distclean-local::
|
|
-$(RM) default.cfg
|