summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2020-12-08 11:12:04 -0500
committerZack Weinberg <zackw@panix.com>2020-12-08 11:12:04 -0500
commit3f75cfc92744bac819b65164169258877ea10475 (patch)
treeee5fe1c3d936f717fa8851b4c2c1c2035de25796
parent48a3113c20920ac733483ecff214446477ac0b1d (diff)
downloadautoconf-3f75cfc92744bac819b65164169258877ea10475.tar.gz
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.
-rw-r--r--lib/autotest/general.m42
1 files changed, 1 insertions, 1 deletions
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])