From a553299904487060d7c6c9bcfd06db5213d7acfa Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Thu, 28 Apr 2016 12:57:03 -0400 Subject: [PATCH] Fix: Don't clean test scripts MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Test scripts are generated by configure, not make. Therefore, we do not want a make clean to remove them. Let automake handle dist and clean. Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- tests/bin/Makefile.am | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/bin/Makefile.am b/tests/bin/Makefile.am index ae9eba80..0d56c6d7 100644 --- a/tests/bin/Makefile.am +++ b/tests/bin/Makefile.am @@ -1,2 +1 @@ -noinst_SCRIPTS = test_trace_read test_intersection test_packet_seq_num -CLEANFILES = $(noinst_SCRIPTS) +check_SCRIPTS = test_trace_read test_intersection test_packet_seq_num -- 2.34.1