summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Glidic <sardemff7+git@sardemff7.net>2015-11-19 10:02:50 +0100
committerMarc-Antoine Perennou <Marc-Antoine@Perennou.com>2016-06-14 16:07:31 +0200
commit6b03c47e04e556691445590c15d594aaff5a1066 (patch)
tree9ff17941b96ce978aa14d21a9bd576e254b35db2
parentda7a6a229b81501a15795d8766731b8523770959 (diff)
downloadlibnotify-6b03c47e04e556691445590c15d594aaff5a1066.tar.gz
build: Use ${PKG_CONFIG} instead of pkg-config
Some use cases (e.g. cross-compiling) require a prefixed pkg-config https://bugzilla.gnome.org/show_bug.cgi?id=758322 Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 632e80d..b9764bc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -103,7 +103,7 @@ if test x$enable_tests = xyes ; then
fi
AM_CONDITIONAL(TESTS_ENABLED, test x$enable_tests = xyes)
-GLIB_GENMARSHAL=`pkg-config --variable=glib_genmarshal glib-2.0`
+GLIB_GENMARSHAL=`${PKG_CONFIG} --variable=glib_genmarshal glib-2.0`
AC_SUBST(GLIB_GENMARSHAL)
GOBJECT_INTROSPECTION_CHECK([0.9.12])