diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-09-24 04:36:38 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-09-24 04:36:38 +0200 |
commit | 1b5804895f9eeb81fc469acfaa316ba3ea1da86e (patch) | |
tree | a8a424c3168e797d6c4a9da05f13b6cc405c7f46 | |
parent | 717b16b5b6cbca628f48791c9ea35075f393fe68 (diff) |
build: use $PKG_CONFIG
The build system sets up this variable for us, so use it rather than
hardcoding "pkg-config" which might be the wrong one.
Equivalent to the one done by
Mike Frysinger <vapier@gentoo.org>
in libqmi.
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 209b4f0a..21bbe547 100644 --- a/configure.ac +++ b/configure.ac @@ -111,10 +111,10 @@ else fi AC_SUBST(UDEV_BASE_DIR) -GLIB_GENMARSHAL=`pkg-config --variable=glib_genmarshal glib-2.0` +GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0` AC_SUBST(GLIB_GENMARSHAL) -GLIB_MKENUMS=`pkg-config --variable=glib_mkenums glib-2.0` +GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` AC_SUBST(GLIB_MKENUMS) # PolicyKit |