Fix: Do not use wildcards in include/Makefile.am
authorMichael Jeanson <mjeanson@efficios.com>
Tue, 28 Jun 2016 14:50:18 +0000 (10:50 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 28 Jun 2016 15:57:26 +0000 (11:57 -0400)
Wildcards are not officially supported by autotools
in Makefiles since it needs to know the exact list
of files it has to work with.

Using an absolute path was a hack that worked as long
as the path to the header files from the top source dir
was the same as the install path of those files, which
is not the case anymore.

Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
include/Makefile.am

index 2792f9956b480ffd98ae7046091cffae0223a496..0dd5debf97c958b55315d1fb251e49e276d21bc8 100644 (file)
@@ -5,12 +5,44 @@ nobase_dist_include_HEADERS = urcu/compiler.h urcu/hlist.h urcu/list.h \
                urcu/ref.h urcu/cds.h urcu/urcu_ref.h urcu/urcu-futex.h \
                urcu/uatomic_arch.h urcu/rculfhash.h urcu/wfcqueue.h \
                urcu/lfstack.h urcu/syscall-compat.h \
                urcu/ref.h urcu/cds.h urcu/urcu_ref.h urcu/urcu-futex.h \
                urcu/uatomic_arch.h urcu/rculfhash.h urcu/wfcqueue.h \
                urcu/lfstack.h urcu/syscall-compat.h \
-               $(top_srcdir)/include/urcu/map/*.h \
-               $(top_srcdir)/include/urcu/static/*.h \
+               urcu/map/urcu-bp.h urcu/map/urcu.h urcu/map/urcu-qsbr.h \
+               urcu/static/lfstack.h urcu/static/rculfqueue.h \
+               urcu/static/rculfstack.h urcu/static/urcu-bp.h \
+               urcu/static/urcu.h urcu/static/urcu-pointer.h \
+               urcu/static/urcu-qsbr.h urcu/static/wfcqueue.h \
+               urcu/static/wfqueue.h urcu/static/wfstack.h \
                urcu/tls-compat.h urcu/debug.h
 
 # Don't distribute generated headers
 nobase_nodist_include_HEADERS = urcu/arch.h urcu/uatomic.h urcu/config.h
 
                urcu/tls-compat.h urcu/debug.h
 
 # Don't distribute generated headers
 nobase_nodist_include_HEADERS = urcu/arch.h urcu/uatomic.h urcu/config.h
 
-EXTRA_DIST = $(top_srcdir)/include/urcu/arch/*.h \
-       $(top_srcdir)/include/urcu/uatomic/*.h
+EXTRA_DIST = urcu/arch/aarch64.h \
+       urcu/arch/alpha.h \
+       urcu/arch/arm.h \
+       urcu/arch/gcc.h \
+       urcu/arch/generic.h \
+       urcu/arch/hppa.h \
+       urcu/arch/ia64.h \
+       urcu/arch/mips.h \
+       urcu/arch/nios2.h \
+       urcu/arch/ppc.h \
+       urcu/arch/s390.h \
+       urcu/arch/sparc64.h \
+       urcu/arch/tile.h \
+       urcu/arch/unknown.h \
+       urcu/arch/x86.h \
+       urcu/uatomic/aarch64.h \
+       urcu/uatomic/alpha.h \
+       urcu/uatomic/arm.h \
+       urcu/uatomic/gcc.h \
+       urcu/uatomic/generic.h \
+       urcu/uatomic/hppa.h \
+       urcu/uatomic/ia64.h \
+       urcu/uatomic/mips.h \
+       urcu/uatomic/nios2.h \
+       urcu/uatomic/ppc.h \
+       urcu/uatomic/s390.h \
+       urcu/uatomic/sparc64.h \
+       urcu/uatomic/tile.h \
+       urcu/uatomic/unknown.h
+       urcu/uatomic/x86.h
This page took 0.025451 seconds and 4 git commands to generate.