From: Andrei Borzenkov Subject: [PATCH] configure: replace AS_ECHO with echo in program transform INSTALL requires autoconf 2.60, but AS_ECHO appeared first in 2.61a. It is used just once to transform program names; in this case arguments are known plain string so simple `echo' is safe to use. This avoids bumping required autoconf version without real reason. Reported by: Jiri B --- acinclude.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acinclude.m4 b/acinclude.m4 index 526f97a..e659b1e 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -421,5 +421,5 @@ else dnl Create an output variable with the transformed name of a GRUB utility dnl program. AC_DEFUN([grub_TRANSFORM],[dnl -AC_SUBST(AS_TR_SH([$1]), [`AS_ECHO([$1]) | sed "$program_transform_name"`])dnl +AC_SUBST(AS_TR_SH([$1]), [`echo [$1] | sed "$program_transform_name"`])dnl ]) -- tg: (f4d35d4..) u/no_as_echo (depends on: master)