From: Simon Marchi Date: Thu, 28 Apr 2016 02:52:19 +0000 (-0400) Subject: Fix: let automake handle CLEAN and DIST X-Git-Tag: v2.0.0-pre1~986 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=ffc6d11f4ed203e2b6c595cdc4c32edc9381d787 Fix: let automake handle CLEAN and DIST Files test_seek_empty_packet and test_seek_big_trace are generated by configuring, not by making. Therefore, we do not want a make clean to remove them. Otherwise, doing... * make * make clean * make * make check ... fails. Automake infers EXTRA_DIST and DISTCLEANFILES from AC_CONFIG_FILES. Signed-off-by: Simon Marchi Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- diff --git a/tests/lib/Makefile.am b/tests/lib/Makefile.am index 823e269c..e8d1e6a1 100644 --- a/tests/lib/Makefile.am +++ b/tests/lib/Makefile.am @@ -44,8 +44,6 @@ test_bt_ctf_field_type_validation_SOURCES = test_bt_ctf_field_type_validation.c check_SCRIPTS = test_seek_big_trace \ test_seek_empty_packet SCRIPT_LIST = test_ctf_writer_complete -EXTRA_DIST = test_seek_big_trace.in test_seek_empty_packet.in -CLEANFILES= test_seek_big_trace test_seek_empty_packet if ENABLE_DEBUGINFO test_dwarf_LDFLAGS = -static