From: Vadim Zeitlin Date: Tue, 3 Apr 2007 01:02:05 +0000 (+0000) Subject: quote AM_PATH_WXCONFIG arguments before passing them to WX_CONFIG_CHECK, otherwise... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fb5b13210e1909e2fb74f867c7670f63f3ec2454?hp=fa36fe3680d7bdf55a54885444972368fe5edfe6 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 --- 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]) +])