[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5580-gb3fae6d7
From: |
Arnold Robbins |
Subject: |
[SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5580-gb3fae6d7 |
Date: |
Fri, 25 Oct 2024 02:14:17 -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 b3fae6d7fde8173fb8d58de6eb38fe1d79f5d979 (commit)
from 780774279b387e00036b9aead32b153d7a1f4353 (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=b3fae6d7fde8173fb8d58de6eb38fe1d79f5d979
commit b3fae6d7fde8173fb8d58de6eb38fe1d79f5d979
Author: Arnold D. Robbins <arnold@skeeve.com>
Date: Fri Oct 25 09:13:49 2024 +0300
Use ${PAGER:-more} for make diffout.
diff --git a/pc/ChangeLog b/pc/ChangeLog
index 42d97f69..85a1810f 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,7 @@
+2024-10-25 Arnold D. Robbins <arnold@skeeve.com>
+
+ * Makefile.tst: Regenerated.
+
2024-09-19 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.tst, config.h: Regenerated.
diff --git a/pc/Makefile.tst b/pc/Makefile.tst
index b9c98715..a32b84f9 100644
--- a/pc/Makefile.tst
+++ b/pc/Makefile.tst
@@ -4005,7 +4005,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/ChangeLog b/test/ChangeLog
index e5b6221f..fedb6c2d 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,8 @@
+2024-10-25 Arnold D. Robbins <arnold@skeeve.com>
+
+ * Makefile.am (diffout): Use ${PAGER:-more} instead of
+ ${PAGER-more}.
+
2024-10-21 John Devin <john.m.devin@gmail.com>
* Makefile.am (diffout): Use $PAGER or `more' if it's not
diff --git a/test/Makefile.am b/test/Makefile.am
index 4ec75301..b2e5a728 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -2732,7 +2732,7 @@ diffout:
diff -u "$(srcdir)"/$${base}.ok $$i ; \
fi ; \
fi ; \
- done | $${PAGER-more}
+ done | $${PAGER:-more}
# make things easier for z/OS
zos-diffout:
diff --git a/test/Makefile.in b/test/Makefile.in
index 5eebb3e2..9dcfc905 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -5814,7 +5814,7 @@ diffout:
diff -u "$(srcdir)"/$${base}.ok $$i ; \
fi ; \
fi ; \
- done | $${PAGER-more}
+ done | $${PAGER:-more}
# make things easier for z/OS
zos-diffout:
-----------------------------------------------------------------------
Summary of changes:
pc/ChangeLog | 4 ++++
pc/Makefile.tst | 2 +-
test/ChangeLog | 5 +++++
test/Makefile.am | 2 +-
test/Makefile.in | 2 +-
5 files changed, 12 insertions(+), 3 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-5580-gb3fae6d7,
Arnold Robbins <=