[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
From: |
Gavin D. Smith |
Date: |
Mon, 7 Aug 2023 09:09:15 -0400 (EDT) |
branch: master
commit 923427b8cbb2816aa10a58ec4a7fd16bab98a7fc
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Mon Aug 7 14:09:04 2023 +0100
* Makefile.am (po-check): look under directories beginning A-Z as
well as a-z to include Pod-Simple-Texinfo. Eliminate use of
$(CVS_LIST_EXCEPT) which does not appear to be defined anywhere.
---
ChangeLog | 6 ++++++
Makefile.am | 10 ++++------
2 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 2740f0238f..d61ea68bf8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2023-08-07 Gavin Smith <gavinsmith0123@gmail.com>
+
+ * Makefile.am (po-check): look under directories beginning A-Z as
+ well as a-z to include Pod-Simple-Texinfo. Eliminate use of
+ $(CVS_LIST_EXCEPT) which does not appear to be defined anywhere.
+
2023-08-07 Gavin Smith <gavinsmith0123@gmail.com>
* po/POTFILES.in: some updates
diff --git a/Makefile.am b/Makefile.am
index f250a565d1..6e028000e1 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -95,10 +95,9 @@ po-check:
grep -E -v '^(#|$$)' po/POTFILES.in \
| grep -v '^src/false\.c$$' | sort > $@-1; \
files=; \
- for file in $$($(CVS_LIST_EXCEPT)) \
- `find [a-z]* -name '*.[ch]' \
- -o -name '*.p[lm]' \
- -o -name '*.notyettwjr'`; do \
+ for file in `find [a-zA-Z]* -name '*.[ch]' \
+ -o -name '*.p[lm]' \
+ -o -name '*.notyettwjr'`; do \
# don't look at sources from some subdirs. \
case $$file in \
contrib/* ) continue;; \
@@ -129,8 +128,7 @@ po_document-check:
@if test -f po_document/POTFILES.in; then \
grep -E -v '^(#|$$)' po_document/POTFILES.in | sort > $@-1; \
files=; \
- for file in $$($(CVS_LIST_EXCEPT)) \
- `find [a-z]* -name '*.p[lm]'`; do \
+ for file in `find [a-z]* -name '*.p[lm]'`; do \
# don't look at sources from some subdirs. \
case $$file in \
contrib/* ) continue;; \