From da741ead258bd2cf6f18dbd0a8cb78ad80b7ed13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Thu, 24 May 2018 17:15:23 +0200 Subject: [PATCH] cogl-gles2/Makefile.am: Add cogl/ includedir Otherwise cogl-egl-defines.h isn't found when building out-of-tree. --- cogl/cogl-gles2/Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cogl/cogl-gles2/Makefile.am b/cogl/cogl-gles2/Makefile.am index 294228d7a..4cba75bbe 100644 --- a/cogl/cogl-gles2/Makefile.am +++ b/cogl/cogl-gles2/Makefile.am @@ -9,7 +9,9 @@ mutterlib_LTLIBRARIES = libmutter-cogl-gles2-@LIBMUTTER_API_VERSION@.la AM_CPPFLAGS = \ -I$(top_srcdir) \ - -I$(top_builddir) + -I$(top_builddir) \ + -I$(top_builddir)/cogl \ + $(NULL) AM_CFLAGS = $(COGL_DEP_CFLAGS) $(COGL_EXTRA_CFLAGS) $(MAINTAINER_CFLAGS)