From 72ac461cbe30cc4b9221e96b909f60ca1cb4a534 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Thu, 20 Oct 2016 09:55:03 -0700 Subject: [PATCH] Fix make distclean Makefile.am removal The file tests/zfs-tests/tests/stress/Makefile.am gets mistakenly removed by the distclean target because it's empty. Adding a `SUBDIRS =` line prevents the removal. This directory is being preserved as the location to add assorted stress tests. These may include but are not limited to. http://kernel.ubuntu.com/~cking/stress-ng/ https://github.com/zfsonlinux/zfsstress/ Signed-off-by: Brian Behlendorf Closes #5308 --- tests/zfs-tests/tests/stress/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/zfs-tests/tests/stress/Makefile.am b/tests/zfs-tests/tests/stress/Makefile.am index e69de29bb2..741f850856 100644 --- a/tests/zfs-tests/tests/stress/Makefile.am +++ b/tests/zfs-tests/tests/stress/Makefile.am @@ -0,0 +1 @@ +SUBDIRS =