summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Bragg <robert@linux.intel.com>2011-04-19 17:47:57 +0100
committerRobert Bragg <robert@linux.intel.com>2011-05-03 11:43:25 +0100
commit397b9e95f6eb93d2e839e46939e58bf4e47cc234 (patch)
treeb7f26680498e7622bbfcf2683a311445cc679520
parent2f06c8459d117e226e09c2aebd47a880231fe6fc (diff)
downloadclutter-397b9e95f6eb93d2e839e46939e58bf4e47cc234.tar.gz
cogl/configure.ac: AC_SUBST an empty MAINTAINER_CFLAGS
For compatibility with the way we build Cogl as part of Clutter we now substitute an empty MAINTAINER_CFLAGS variable. When building Cogl standalone all our extra CFLAGS go through COGL_EXTRA_CFLAGS so the separate MAINTAINER_CFLAGS aren't used, but automake will get confused if a substitution isn't made.
-rw-r--r--clutter/cogl/configure.ac4
1 files changed, 4 insertions, 0 deletions
diff --git a/clutter/cogl/configure.ac b/clutter/cogl/configure.ac
index b23ce32c8..c982156ad 100644
--- a/clutter/cogl/configure.ac
+++ b/clutter/cogl/configure.ac
@@ -704,6 +704,10 @@ AC_SUBST(COGL_DEP_LIBS)
AC_SUBST(COGL_EXTRA_CFLAGS)
AC_SUBST(COGL_EXTRA_LDFLAGS)
+# just for compatability with the clutter build...
+MAINTAINER_CFLAGS=
+AC_SUBST(MAINTAINER_CFLAGS)
+
AC_OUTPUT(
Makefile
cogl/Makefile