From ca305d2a403a1e1f40cf9a606b590853863964f9 Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Mon, 8 Jun 2009 01:51:02 +0100 Subject: [PATCH] [build] Search for Cogl GIR in the right place Since we build the Cogl GIR inside /clutter/cogl we should be looking there when building the Clutter GIR. Otherwise g-ir-scanner will look inside the gir directory -- and if you never built Clutter before it will error out. Fixes bug: http://bugzilla.openedhand.com/show_bug.cgi?id=1638 Signed-off-by: Emmanuele Bassi --- clutter/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/clutter/Makefile.am b/clutter/Makefile.am index 1eef4019b..9543f1e5a 100644 --- a/clutter/Makefile.am +++ b/clutter/Makefile.am @@ -251,6 +251,7 @@ endif Clutter-@CLUTTER_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libclutter-@CLUTTER_FLAVOUR@-@CLUTTER_API_VERSION@.la $(INTROSPECTION_SCANNER) -v --namespace Clutter --nsversion=@CLUTTER_API_VERSION@ \ $(INCLUDES) \ + --add-include-path=cogl \ $(json_gir_include_path) \ --include=GL-1.0 \ --include=GObject-2.0 \