summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@debian.org>2018-03-26 08:56:56 +0100
committerSimon McVittie <smcv@debian.org>2018-03-26 08:58:57 +0100
commit323d86b6e4bb19f252328a78e93fda03e1d9c0df (patch)
tree5153443e80d30cb8e948c14f1167182a8e0ce79f
parent3a7fbb3b30f6ed8f65f9f5862c2fd30035a1a1ed (diff)
downloadgtk+-wip/smcv/ac-path-tool.tar.gz
m4macros: Fix underquoting in AC_PATH_TOOLwip/smcv/ac-path-tool
While these lines are being changed anyway, they might as well be more correct. Signed-off-by: Simon McVittie <smcv@debian.org>
-rw-r--r--m4macros/gtk-3.0.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4macros/gtk-3.0.m4 b/m4macros/gtk-3.0.m4
index eb4f381697..642468782f 100644
--- a/m4macros/gtk-3.0.m4
+++ b/m4macros/gtk-3.0.m4
@@ -25,7 +25,7 @@ AC_ARG_ENABLE(gtktest, [ --disable-gtktest do not try to compile and run
no_gtk=""
- AC_PATH_TOOL(PKG_CONFIG, pkg-config, no)
+ AC_PATH_TOOL([PKG_CONFIG], [pkg-config], [no])
if test x$PKG_CONFIG != xno ; then
if $PKG_CONFIG --atleast-pkgconfig-version 0.7 ; then
@@ -201,7 +201,7 @@ AC_DEFUN([GTK_CHECK_BACKEND],
min_gtk_version=ifelse([$2],,3.0.0,$2)
pkg_config_args="$pkg_config_args >= $min_gtk_version"
- AC_PATH_TOOL(PKG_CONFIG, [pkg-config], [AC_MSG_ERROR([No pkg-config found])])
+ AC_PATH_TOOL([PKG_CONFIG], [pkg-config], [AC_MSG_ERROR([No pkg-config found])])
if $PKG_CONFIG $pkg_config_args ; then
target_found=yes