From: Jim Meyering Date: Mon, 16 Nov 2020 17:50:04 +0000 (-0800) Subject: tests: correct preceding change. X-Git-Tag: v1.16.3~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b28fead230968edb952499261243434515c78835;p=thirdparty%2Fautomake.git tests: correct preceding change. * t/auxdir-pr19311.sh: Fix error in case stmt and match more upcoming versions. --- diff --git a/t/auxdir-pr19311.sh b/t/auxdir-pr19311.sh index 7add75468..8f0d3bd0a 100644 --- a/t/auxdir-pr19311.sh +++ b/t/auxdir-pr19311.sh @@ -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