From 3f75cfc92744bac819b65164169258877ea10475 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Tue, 8 Dec 2020 11:12:04 -0500 Subject: lib/autotest/general.m4: typo fix 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. --- lib/autotest/general.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/autotest/general.m4 b/lib/autotest/general.m4 index 955ed0d9..0c0e3c5b 100644 --- a/lib/autotest/general.m4 +++ b/lib/autotest/general.m4 @@ -1784,7 +1784,7 @@ for at_program in : `eval echo $at_tested` 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]) -- cgit v1.2.1