From: Václav Slavík Date: Sun, 1 Jul 2001 15:09:07 +0000 (+0000) Subject: fixed AC_MSG_RESULT output of toolkit name to work with both autoconf 2.50 and older X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ec7c3e898a9908a329273fe428c05e5f813c2cee fixed AC_MSG_RESULT output of toolkit name to work with both autoconf 2.50 and older git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10743 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/configure.in b/configure.in index 015b2ec4d2..93f0777813 100644 --- a/configure.in +++ b/configure.in @@ -1429,7 +1429,8 @@ for toolkit in `echo $ALL_TOOLKITS`; do echo "$var=$value" >> ${wx_arg_cache_file} fi if test "$value" = 1; then - AC_MSG_RESULT([`echo $toolkit | tr [[A-Z]] [[a-z]]`]) + toolkit_echo=`echo $toolkit | tr [[A-Z]] [[a-z]]` + AC_MSG_RESULT($toolkit_echo) fi fi done