diff options
author | David Quigley <[email protected]> | 2017-09-13 12:45:04 -0600 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-09-13 11:45:04 -0700 |
commit | b1490dd43e3c98649c7d23928d908f5bb019411b (patch) | |
tree | 91f804c920e1e549c0682f03f85ce43f9699d0e8 /tests/zfs-tests | |
parent | ded8f06a3cfee60b3a8ea5309e9c4d0e567ed3b5 (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/zfs-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 |