[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * Makefile.am (po-check): avoid a false positive.
From: |
Patrice Dumas |
Subject: |
branch master updated: * Makefile.am (po-check): avoid a false positive. |
Date: |
Tue, 24 Dec 2024 04:20:36 -0500 |
This is an automated email from the git hooks/post-receive script.
pertusus pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new 07cac93015 * Makefile.am (po-check): avoid a false positive.
07cac93015 is described below
commit 07cac93015218bd53c6cfaf02ccb08c2aef1c46d
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Tue Dec 24 10:20:35 2024 +0100
* Makefile.am (po-check): avoid a false positive.
---
ChangeLog | 4 ++++
Makefile.am | 3 +++
2 files changed, 7 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index 9bc6ec3c92..547a60257a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2024-12-24 Patrice Dumas <pertusus@free.fr>
+
+ * Makefile.am (po-check): avoid a false positive.
+
2024-12-24 Patrice Dumas <pertusus@free.fr>
* tp/Texinfo/XS: run
diff --git a/Makefile.am b/Makefile.am
index a629495d52..bdfe19a0cc 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -118,6 +118,8 @@ update-po:
# Note that pgettext is not matched to avoid a false positive in
# tp/Texinfo/Translations.pm, but it is not problematic as it appears
# only in errors.c, which matches other function names.
+# False positive in ConvertXS.c with function definition but no
+# translated strings
po-check:
@if test -f po/POTFILES.in; then \
grep -E -v '^(#|$$)' po/POTFILES.in \
@@ -134,6 +136,7 @@ po-check:
tp/maintain/* ) continue;; \
tp/t/results* ) continue;; \
tp/Texinfo/XS/gnulib/lib/*) continue;; \
+ tp/Texinfo/XS/convert/ConvertXS.c) continue;;
\
esac; \
files="$$files $$file"; \
done; \
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * Makefile.am (po-check): avoid a false positive.,
Patrice Dumas <=