From: Zack Weinberg Date: Tue, 8 Dec 2020 16:12:04 +0000 (-0500) Subject: lib/autotest/general.m4: typo fix X-Git-Tag: v2.70~3 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=3f75cfc92744bac819b65164169258877ea10475;p=thirdparty%2Fautoconf.git 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. --- 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])