Hello,
On Mon, Jun 23, 2008 at 07:58:06PM +0900, Vladimir wrote:
> ++ printf '%s\n' 'abcd\c'
> + echo='abcd\c'
> + test 'Xabcd\c' = 'Xabcd\c'
> ++ printf %s 'abcd\c'
> + echo='abcd\c'
> + test 'Xabcd\c' = 'Xabcd\c'
since your log ends like this, bash had to misparse the following
command, which is
echo=`$as_echo '\a\b\c\f\n\r\t\v\"\'`
(This should be on line 504 of testsuite.dir/004/script.)
This looks like a bug in your shell. You might be able to reproduce
it with the following simple script:
#!/bin/sh
as_echo='printf %s\n'
echo=`$as_echo '\a\b\c\f\n\r\t\v\"\'`
Generally, I tend to think that you have discovered a bug in (your
version of) bash, not in the Autoconf.
Hope this helps,
Stepan