Fix problem with including libringbuffer/smp.h in make-dist
authorGregory Haskins <gregory.haskins@gmail.com>
Mon, 7 Nov 2011 19:43:04 +0000 (14:43 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Mon, 7 Nov 2011 19:43:04 +0000 (14:43 -0500)
"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 <gregory.haskins@gmail.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
libringbuffer/Makefile.am

index a64ee6e4d043736c4fa731494e864f7482fc6e76..f1e8a971f41bf5687826e072547da17bf29ee065 100644 (file)
@@ -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 \
This page took 0.025552 seconds and 4 git commands to generate.