From b28fead230968edb952499261243434515c78835 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 16 Nov 2020 09:50:04 -0800 Subject: tests: correct preceding change. * t/auxdir-pr19311.sh: Fix error in case stmt and match more upcoming versions. --- t/auxdir-pr19311.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 -- cgit v1.2.1