From: Otavio Salvador Date: Tue, 2 Jul 2013 15:18:48 +0000 (-0400) Subject: build: Fix out-of-tree build X-Git-Tag: v2.2.1~3 X-Git-Url: http://git.liburcu.org/?p=lttng-ust.git;a=commitdiff_plain;h=ec508898e6d231432cea5727dc7d9a7af418f989 build: Fix out-of-tree build To allow out-of-tree build, we need to include top_buildir in include directories or the generated config header won't be found. Signed-off-by: Otavio Salvador Signed-off-by: Mathieu Desnoyers --- diff --git a/liblttng-ust-comm/Makefile.am b/liblttng-ust-comm/Makefile.am index 2ae997c5..065dbbf7 100644 --- a/liblttng-ust-comm/Makefile.am +++ b/liblttng-ust-comm/Makefile.am @@ -1,4 +1,4 @@ -AM_CPPFLAGS = -I$(top_srcdir)/include +AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include noinst_LTLIBRARIES = liblttng-ust-comm.la