From: David Quigley Date: Wed, 13 Sep 2017 18:45:04 +0000 (-0600) Subject: Fix bug in distclean which removes needed files X-Git-Tag: zfs-0.8.0-rc1~565 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b1490dd43e3c98649c7d23928d908f5bb019411b;p=zfs 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 Reviewed-by: Brian Behlendorf Reviewed-by: Giuseppe Di Natale Signed-off-by: David Quigley Closes #6636 --- 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