[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[automake-commit] branch master updated: tests: work also with v2.72-9-g
From: |
Jim Meyering |
Subject: |
[automake-commit] branch master updated: tests: work also with v2.72-9-g7a6347d1 and newer |
Date: |
Mon, 03 Jun 2024 01:59:52 -0400 |
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=d61068e1a8ef7cdd07508ff9ec3a6c841fcdb754
The following commit(s) were added to refs/heads/master by this push:
new d61068e1a tests: work also with v2.72-9-g7a6347d1 and newer
d61068e1a is described below
commit d61068e1a8ef7cdd07508ff9ec3a6c841fcdb754
Author: Jim Meyering <meyering@meta.com>
AuthorDate: Sun Jun 2 18:02:41 2024 -0700
tests: work also with v2.72-9-g7a6347d1 and newer
* t/dist-missing-m4.sh: Accommodate a slightly different diagnostic
("undefined or overquoted macro" rather than "possibly undefined macro")
in autoconf as of v2.72-9-g7a6347d1.
---
t/dist-missing-m4.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/t/dist-missing-m4.sh b/t/dist-missing-m4.sh
index c9756913b..d0d9c835c 100644
--- a/t/dist-missing-m4.sh
+++ b/t/dist-missing-m4.sh
@@ -61,7 +61,7 @@ for vpath in false :; do
run_make -e FAIL -M
# This error will come from autoconf, not make, so we can be stricter
# in our grepping of it.
- grep 'possibly undefined .*MY_ZARDOZ' output
+ $EGREP '(possibly undefined|undefined or overquoted) macro: .*MY_ZARDOZ'
output
grep 'MY_FOOBAR' output && exit 1 # No spurious error, please.
cd "$ocwd" || fatal_ "cannot chdir back to top-level test directory"
done
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [automake-commit] branch master updated: tests: work also with v2.72-9-g7a6347d1 and newer,
Jim Meyering <=