The absolute-path case in AT_TESTED had a typo in it, causing bizarre
error messages and preventing programs identified by absolute path
from being logged properly.
* lib/autotest/general.m4 (AT_TESTED): Fix typoed shell syntax in
handling of programs identified by absolute path.
do
AS_CASE([$at_program],
[:], [continue],
- [[[\\/]* | ?:[\\/]*]], [$at_program_=$at_program],
+ [[[\\/]* | ?:[\\/]*]], [at_program_=$at_program],
[_AS_PATH_WALK([$PATH], [test -f "$as_dir$at_program" && break])
at_program_=$as_dir$at_program])