All pastes #1817224 Raw Edit

bob

public text v1 · immutable
#1817224 ·published 2010-03-01 15:09 UTC
rendered paste body
From 674d13f3a4bc46e621c914813015b2120e2875c4 Mon Sep 17 00:00:00 2001From: Robert Bragg <robert@linux.intel.com>Date: Fri, 26 Feb 2010 09:48:43 +0000Subject: [PATCH] build: Fixes out of tree buildsWhen building the gobject introspection data the build wasn't able tofind clutter/clutter-json.h so this adds $(top_builddir) to INCLUDES.--- clutter/Makefile.am |    3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)diff --git a/clutter/Makefile.am b/clutter/Makefile.amindex c5658ac..cb0a6c0 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 = \-- 1.6.3.3