summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-01-08 01:58:44 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-01-08 02:00:12 +0000
commitc19eb8fb4e08f02964b95443d9ac3e8db1281eba (patch)
treeba75d71c645e10f87040474d67d49ee71d54ede4
parent4faf186ea3d151ee68e1cc89bf6dc4ee1fbca8b6 (diff)
gobject-introspection: use PKG_CONFIG_PATH specified at configure time
Use PKG_CONFIG_PATH specified at configure time (if any) as well for the g-ir-compiler, rather than just assuming the env var has been set.
-rw-r--r--gst/rtsp-server/Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/rtsp-server/Makefile.am b/gst/rtsp-server/Makefile.am
index 02a0bd7..ac5624a 100644
--- a/gst/rtsp-server/Makefile.am
+++ b/gst/rtsp-server/Makefile.am
@@ -83,7 +83,8 @@ typelibsdir = $(libdir)/girepository-1.0/
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib)
%.typelib: %.gir $(INTROSPECTION_COMPILER)
- $(AM_V_GEN)$(INTROSPECTION_COMPILER) \
+ $(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
+ $(INTROSPECTION_COMPILER) \
--includedir=$(srcdir) \
--includedir=$(builddir) \
--includedir=`$(PKG_CONFIG) --variable=girdir gstreamer-0.10` \