From: Simon Marchi Date: Tue, 14 Apr 2015 20:45:27 +0000 (-0400) Subject: Fix python bindings' Makefile for out-of-tree builds X-Git-Tag: v2.7.0-rc1~42 X-Git-Url: http://git.lttng.org./?a=commitdiff_plain;h=e2ad251c620221af6108ea4d15f0c26cf5b587c1;hp=e2ad251c620221af6108ea4d15f0c26cf5b587c1;p=lttng-tools.git Fix python bindings' Makefile for out-of-tree builds The references to the built archives should use top_builddir and not top_srcdir, because that's where they are. And new in V2, I got a new error: lttng_wrap.c:2970:25: fatal error: lttng/lttng.h: No such file or directory #include I think we are missing the -I$(top_srcdir)/include. I had not noticed this previously, probably because I had an lttng/lttng.h in /usr/local/include or /usr/include. Also, the other includes seem unnecessary. The This is not really related to out-of-tree builds though. Signed-off-by: Simon Marchi Signed-off-by: Jérémie Galarneau ---