diff options
author | ailin-nemui <ailin-nemui@users.noreply.github.com> | 2017-01-16 19:15:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-16 19:15:43 +0100 |
commit | 7fd3c1f50a1842152a8a9ca652154c5350f6aed8 (patch) | |
tree | bf7b9e1b69cc2ba3cb47acd2e299256f68d1294e /m4 | |
parent | f8a38857069a6de21444bafdef5d779188dcc74b (diff) | |
parent | 6221ce520644efe4095bfecbc29f11c9c6962e0f (diff) | |
download | irssi-7fd3c1f50a1842152a8a9ca652154c5350f6aed8.zip |
Merge pull request #621 from josephbisch/fix-glib-2.0-pkg-config
Fix glib-2.0.m4 so that $PKG_CONFIG doesn't break configure script
Diffstat (limited to 'm4')
-rw-r--r-- | m4/glib-2.0.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/glib-2.0.m4 b/m4/glib-2.0.m4 index 2c8760b7..5b7c84c0 100644 --- a/m4/glib-2.0.m4 +++ b/m4/glib-2.0.m4 @@ -43,7 +43,7 @@ AC_ARG_ENABLE(glibtest, [ --disable-glibtest do not try to compile and run min_glib_version=ifelse([$1], ,2.0.0,$1) AC_MSG_CHECKING(for GLIB - version >= $min_glib_version) - if test x$PKG_CONFIG != xno ; then + if test "x$PKG_CONFIG" != xno ; then ## don't try to run the test against uninstalled libtool libs if $PKG_CONFIG --uninstalled $pkg_config_args; then echo "Will use uninstalled version of GLib found in PKG_CONFIG_PATH" |