From: Michael Jeanson Date: Thu, 28 Apr 2016 16:57:03 +0000 (-0400) Subject: Fix: Don't clean test scripts X-Git-Tag: v1.4.0-rc1~34 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=a553299904487060d7c6c9bcfd06db5213d7acfa Fix: Don't clean test scripts 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 --- 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