From 1b44d177fb0601c48383c474ea719ecc106a59ae Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 25 May 2016 10:32:46 +0100 Subject: [PATCH] g-i: pass compiler env to g-ir-scanner It's what introspection.mak does as well. Should fix spurious build failures on gnome-continuous (caused by g-ir-scanner getting compiler details via python which is broken in some environments so passing the compiler details bypasses that). --- ges/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/ges/Makefile.am b/ges/Makefile.am index b71704f..a03bd2d 100644 --- a/ges/Makefile.am +++ b/ges/Makefile.am @@ -179,6 +179,7 @@ gir_sources=$(patsubst %,$(srcdir)/%, $(libges_@GST_API_VERSION@_la_SOURCES)) GES-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libges-@GST_API_VERSION@.la $(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \ + CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" CC="$(CC)" PKG_CONFIG="$(PKG_CONFIG)" DLLTOOL="$(DLLTOOL)" \ $(INTROSPECTION_SCANNER) -v --namespace GES \ --nsversion=@GST_API_VERSION@ \ --identifier-prefix=GES \ -- 2.7.4