]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
tests: correct preceding change.
authorJim Meyering <meyering@fb.com>
Mon, 16 Nov 2020 17:50:04 +0000 (09:50 -0800)
committerJim Meyering <meyering@fb.com>
Mon, 16 Nov 2020 17:50:04 +0000 (09:50 -0800)
* t/auxdir-pr19311.sh: Fix error in case stmt and match more
upcoming versions.

t/auxdir-pr19311.sh

index 7add754681b902ad05fd2a9b9b0f288ce4f0467c..8f0d3bd0abd8a393dd53007f42a826158844a637 100644 (file)
@@ -23,8 +23,9 @@ required=cc
 
 ver=$($AUTOCONF --version | sed -n '1s/.* //p')
 case $ver in
-  2.69[d-z]) ;;
-  2.70*) ;;
+  2.69[d-z]*) ;;
+  2.[7-9][0-9]*) ;;
+  [3-9].*) ;;
   *) skip_ 'this test passes with autoconf-2.69d and newer'
 esac