From ffc6d11f4ed203e2b6c595cdc4c32edc9381d787 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Wed, 27 Apr 2016 22:52:19 -0400 Subject: [PATCH] Fix: let automake handle CLEAN and DIST MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- tests/lib/Makefile.am | 2 -- 1 file changed, 2 deletions(-) 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 -- 2.34.1