From b9a91594f4b37388222b587eaea7618ea8c78381 Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Fri, 26 Feb 2010 09:48:43 +0000 Subject: [PATCH] build: Fixes out of tree builds When building the gobject introspection data the build wasn't able to find clutter/clutter-json.h so this adds $(top_builddir) to INCLUDES. --- clutter/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clutter/Makefile.am b/clutter/Makefile.am index c5658acb5..cb0a6c0ef 100644 --- a/clutter/Makefile.am +++ b/clutter/Makefile.am @@ -43,8 +43,9 @@ INCLUDES = \ -I$(top_srcdir)/clutter/cogl/pango \ -I$(top_srcdir)/clutter \ $(clutter_json_include) \ - -I$(top_builddir)/clutter/cogl \ + -I$(top_builddir) \ -I$(top_builddir)/clutter \ + -I$(top_builddir)/clutter/cogl \ $(NULL) AM_CPPFLAGS = \