From a18071d177dc5d0c7a5b55e73867a893dd15386c Mon Sep 17 00:00:00 2001 From: Nils Carlson Date: Wed, 1 Sep 2010 15:54:08 +0200 Subject: [PATCH] Fix a broken test makefile The makefile was missing the header file in the sources list and so was failing make distcheck. --- tests/trace_event/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/trace_event/Makefile.am b/tests/trace_event/Makefile.am index 6de9a12..dcf23a7 100644 --- a/tests/trace_event/Makefile.am +++ b/tests/trace_event/Makefile.am @@ -1,7 +1,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/include noinst_PROGRAMS = trace_event_test -trace_event_test_SOURCES = trace_event_test.c +trace_event_test_SOURCES = trace_event_test.c trace_event_test.h trace_event_test_LDADD = $(top_builddir)/libust/libust.la $(top_builddir)/libust-initializer.o CFLAGS_trace_event_test.o = -I$(src) -- 2.34.1