From d1ab320a342f31d729f7f943ddac8adabef2ab21 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Wed, 27 Apr 2016 22:52:18 -0400 Subject: [PATCH] Fix: Remove test_seek_empty_packet and test_seek_big_trace from SCRIPT_LIST MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Since these files are generated by autoconf, they shouldn't be included in SCRIPT_LIST, which is the list of scripts to copy from the source directory to the build directory. This gets rid of these warnings when building out of tree: cp: cannot stat '/home/simark/src/babeltrace/tests/lib/test_seek_big_trace': No such file or directory cp: cannot stat '/home/simark/src/babeltrace/tests/lib/test_seek_empty_packet': No such file or directory Signed-off-by: Simon Marchi Signed-off-by: Jérémie Galarneau --- tests/lib/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/lib/Makefile.am b/tests/lib/Makefile.am index f55d88a1..6e48271b 100644 --- a/tests/lib/Makefile.am +++ b/tests/lib/Makefile.am @@ -26,9 +26,9 @@ test_seek_SOURCES = test_seek.c test_bitfield_SOURCES = test_bitfield.c test_ctf_writer_SOURCES = test_ctf_writer.c -SCRIPT_LIST = test_seek_big_trace \ - test_seek_empty_packet \ - test_ctf_writer_complete +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 -- 2.34.1