2005-05-24 Stepan Kasal * lib/autoconf/general.m4 (AC_MSG_CHECKING, AC_MSG_RESULT): Put braces around the two echo commands, for consistency with AC_MSG_ERROR and such. --- lib/autoconf/general.m4 2005-05-24 08:04:39.000000000 +0200 +++ lib/autoconf/general.m4 2005-05-24 08:05:09.000000000 +0200 @@ -2020,16 +2020,16 @@ # AC_MSG_CHECKING(FEATURE) # ------------------------ m4_define([AC_MSG_CHECKING], -[_AS_ECHO_LOG([checking $1]) -_AS_ECHO_N([checking $1... ])[]dnl +[{ _AS_ECHO_LOG([checking $1]) +_AS_ECHO_N([checking $1... ]); }dnl ]) # AC_MSG_RESULT(RESULT) # --------------------- m4_define([AC_MSG_RESULT], -[_AS_ECHO_LOG([result: $1]) -_AS_ECHO([${ECHO_T}$1])[]dnl +[{ _AS_ECHO_LOG([result: $1]) +_AS_ECHO([${ECHO_T}$1]); }dnl ])