[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[automake-commit] branch master updated: tests: correct preceding change
From: |
Jim Meyering |
Subject: |
[automake-commit] branch master updated: tests: correct preceding change. |
Date: |
Mon, 16 Nov 2020 12:50:13 -0500 |
This is an automated email from the git hooks/post-receive script.
meyering pushed a commit to branch master
in repository automake.
View the commit online:
https://git.savannah.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=b28fead230968edb952499261243434515c78835
The following commit(s) were added to refs/heads/master by this push:
new b28fead tests: correct preceding change.
b28fead is described below
commit b28fead230968edb952499261243434515c78835
Author: Jim Meyering <meyering@fb.com>
AuthorDate: Mon Nov 16 09:50:04 2020 -0800
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 7add754..8f0d3bd 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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [automake-commit] branch master updated: tests: correct preceding change.,
Jim Meyering <=