From 181c4480c080cb552a6768b2e40849ee04252777 Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Mon, 23 Mar 2015 15:37:57 -0400 Subject: [PATCH] Fix: oot build: missing top_builddir include lttng/tracepoint.h need lttng/ust-config.h which is generated on build. When in oot build mode ust_config.h is located in $(top_builddir)/include/. Only $(top_srcdir)/include/ was defined as includes source. Signed-off-by: Jonathan Rajotte Signed-off-by: Mathieu Desnoyers --- liblttng-ust-python-agent/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liblttng-ust-python-agent/Makefile.am b/liblttng-ust-python-agent/Makefile.am index 4b34964c..8b38132e 100644 --- a/liblttng-ust-python-agent/Makefile.am +++ b/liblttng-ust-python-agent/Makefile.am @@ -1,5 +1,5 @@ -AM_CPPFLAGS = $(PYTHON_INCLUDE) -I$(top_srcdir)/include/ +AM_CPPFLAGS = $(PYTHON_INCLUDE) -I$(top_srcdir)/include/ -I$(top_builddir)/include/ AM_CFLAGS = -fno-strict-aliasing EXTRA_DIST = lttng_agent.py.in -- 2.34.1