From fb5b13210e1909e2fb74f867c7670f63f3ec2454 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 3 Apr 2007 01:02:05 +0000 Subject: [PATCH] quote AM_PATH_WXCONFIG arguments before passing them to WX_CONFIG_CHECK, otherwise they're lost when using autoconf 2.13 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45230 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxwin.m4 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wxwin.m4 b/wxwin.m4 index 62c35a4d03..84ea11dc44 100644 --- a/wxwin.m4 +++ b/wxwin.m4 @@ -1042,6 +1042,8 @@ dnl Deprecated macro wrappers dnl --------------------------------------------------------------------------- AC_DEFUN([AM_OPTIONS_WXCONFIG], [WX_CONFIG_OPTIONS]) -AC_DEFUN([AM_PATH_WXCONFIG], [WX_CONFIG_CHECK]) +AC_DEFUN([AM_PATH_WXCONFIG], [ + WX_CONFIG_CHECK([$1],[$2],[$3],[$4],[$5]) +])