diff options
author | David Quigley <[email protected]> | 2017-09-13 12:45:04 -0600 |
---|---|---|
committer | Tony Hutter <[email protected]> | 2018-01-30 10:27:30 -0600 |
commit | 53e5890cff8b7c21d34e1142ae717ae79af54da6 (patch) | |
tree | 23e197f69d3358ba3ac4d2a68b15a02b47082cd7 /tests | |
parent | a94447ddf3e8632e1e0476a3b1c985f41a0ae899 (diff) |
Fix bug in distclean which removes needed files
Running distclean removes the following files because of an error
in Makefile.am
deleted: tests/zfs-tests/include/commands.cfg
deleted: tests/zfs-tests/include/libtest.shlib
deleted: tests/zfs-tests/include/math.shlib
deleted: tests/zfs-tests/include/properties.shlib
deleted: tests/zfs-tests/include/zpool_script.shlib
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Giuseppe Di Natale <[email protected]>
Signed-off-by: David Quigley <[email protected]>
Closes #6636
Diffstat (limited to 'tests')
-rw-r--r-- | tests/zfs-tests/include/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/zfs-tests/include/Makefile.am b/tests/zfs-tests/include/Makefile.am index 579e1356e..24633ccc3 100644 --- a/tests/zfs-tests/include/Makefile.am +++ b/tests/zfs-tests/include/Makefile.am @@ -10,4 +10,4 @@ dist_pkgdata_SCRIPTS = \ EXTRA_DIST=default.cfg.in distclean-local:: - -$(RM) $(dist_pkgdata_SCRIPTS) + -$(RM) default.cfg |