From: Gregory Haskins Date: Mon, 7 Nov 2011 19:43:04 +0000 (-0500) Subject: Fix problem with including libringbuffer/smp.h in make-dist X-Git-Tag: v1.9.1~124 X-Git-Url: https://git.lttng.org/?a=commitdiff_plain;h=84ac63b891bfc8826584719a71f071b06ca66675;p=lttng-ust.git Fix problem with including libringbuffer/smp.h in make-dist "make dist" currently produces a tarball that is missing librinbuffer/smp.h, resulting in a build failure when an attempt to compile the tarball is make. This patch addresses the issue by properly including the file in Makefile.am. Signed-off-by: Gregory Haskins Signed-off-by: Mathieu Desnoyers --- diff --git a/libringbuffer/Makefile.am b/libringbuffer/Makefile.am index a64ee6e4..f1e8a971 100644 --- a/libringbuffer/Makefile.am +++ b/libringbuffer/Makefile.am @@ -4,10 +4,8 @@ AM_CFLAGS = -fno-strict-aliasing noinst_LTLIBRARIES = libringbuffer.la libringbuffer_la_SOURCES = \ - shm.c \ - shm.h \ - smp.c \ - shm.h shm_types.h shm_internal.h \ + smp.h smp.c \ + shm.c shm.h shm_types.h shm_internal.h \ ring_buffer_backend.c \ ring_buffer_frontend.c \ api.h \