summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2016-05-25 10:28:43 +0100
committerTim-Philipp Müller <tim@centricular.com>2016-05-25 10:28:43 +0100
commit7de0d6580a15c18e337278fc8cc8a126919731a7 (patch)
treeafc16798095df2e1b63983a469797018c7e4be9e
parent178f2d6fe56668ccd5abdc749c79e04caaff2cfc (diff)
g-i: pass compiler env to g-ir-scannerHEADmaster
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).
-rw-r--r--gst/rtsp-server/Makefile.am1
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/rtsp-server/Makefile.am b/gst/rtsp-server/Makefile.am
index 4f6ea8f..224b48b 100644
--- a/gst/rtsp-server/Makefile.am
+++ b/gst/rtsp-server/Makefile.am
@@ -72,6 +72,7 @@ gir_sources=$(patsubst %,$(srcdir)/%, $(libgstrtspserver_@GST_API_VERSION@_la_SO
GstRtspServer-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstrtspserver-@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 GstRtspServer \
--nsversion=@GST_API_VERSION@ \
--strip-prefix=Gst \