From ec7c3e898a9908a329273fe428c05e5f813c2cee Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sun, 1 Jul 2001 15:09:07 +0000 Subject: [PATCH] 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 --- configure.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.50.0