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
This commit is contained in:
Václav Slavík
2001-07-01 15:09:07 +00:00
parent 9731a5fe6c
commit ec7c3e898a

View File

@@ -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