[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5579-g78077427
From: |
Arnold Robbins |
Subject: |
[SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5579-g78077427 |
Date: |
Tue, 22 Oct 2024 05:22:50 -0400 (EDT) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, gawk-5.3-stable has been updated
via 780774279b387e00036b9aead32b153d7a1f4353 (commit)
from f50e920cbff8f163d5a7f8ffa58f69a9db5f76c4 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=780774279b387e00036b9aead32b153d7a1f4353
commit 780774279b387e00036b9aead32b153d7a1f4353
Author: Arnold D. Robbins <arnold@skeeve.com>
Date: Tue Oct 22 12:22:20 2024 +0300
Allow $PAGER for make diffout, instead of hardcoding 'more'.
diff --git a/test/ChangeLog b/test/ChangeLog
index 6f992433..e5b6221f 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,10 @@
+2024-10-21 John Devin <john.m.devin@gmail.com>
+
+ * Makefile.am (diffout): Use $PAGER or `more' if it's not
+ defined instead of hard coding `more', for output of `make check'.
+ Using `less' would be better, but it's not always available (e.g.,
+ Windows).
+
2024-10-10 Arnold D. Robbins <arnold@skeeve.com>
* lintplus2.ok, mpfrmemok1.ok, nsprof1.ok, nsprof2.ok, nsprof3.ok,
diff --git a/test/Makefile.am b/test/Makefile.am
index 60fd8f36..4ec75301 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -2732,7 +2732,7 @@ diffout:
diff -u "$(srcdir)"/$${base}.ok $$i ; \
fi ; \
fi ; \
- done | more
+ done | $${PAGER-more}
# make things easier for z/OS
zos-diffout:
diff --git a/test/Makefile.in b/test/Makefile.in
index a286c158..5eebb3e2 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -5814,7 +5814,7 @@ diffout:
diff -u "$(srcdir)"/$${base}.ok $$i ; \
fi ; \
fi ; \
- done | more
+ done | $${PAGER-more}
# make things easier for z/OS
zos-diffout:
-----------------------------------------------------------------------
Summary of changes:
test/ChangeLog | 7 +++++++
test/Makefile.am | 2 +-
test/Makefile.in | 2 +-
3 files changed, 9 insertions(+), 2 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5579-g78077427,
Arnold Robbins <=