From 03f5ccdfe6d17258e6ea83f366c220a50bbdc23e Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Tue, 14 Oct 2008 18:15:49 +0200 Subject: [PATCH] Fix wrong quoting --- m4/with_pkg.m4 | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/m4/with_pkg.m4 b/m4/with_pkg.m4 index 5355551..2ac3a0d 100644 --- a/m4/with_pkg.m4 +++ b/m4/with_pkg.m4 @@ -50,10 +50,10 @@ AC_ARG_WITH(with_arg, [AS_TR_SH([with_]with_arg)=def_arg]) AS_CASE([$AS_TR_SH([with_]with_arg)], - [yes],PKG_CHECK_MODULES([$1],[$2],[$3],[$4]), - [auto],PKG_CHECK_MODULES([$1],[$2], - [m4_n([def_action_if_found]) [$3]], - [m4_n([def_action_if_not_found]) [$4]])) + [yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)], + [auto],[PKG_CHECK_MODULES([$1],[$2], + [m4_n([def_action_if_found]) $3], + [m4_n([def_action_if_not_found]) $4])]) m4_popdef([with_arg]) m4_popdef([description]) -- 1.6.0.2