summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-04-16 09:14:12 +0200
committerJim Meyering <meyering@redhat.com>2012-04-16 09:14:12 +0200
commit9ebb49659d873a8395bd6918e58d1b56a9860b37 (patch)
treec40db8e23cf76053a3b873b0bdbec08e594d2440
parentabfafe5a27e5cd91d7b9c2e2b91e4dfe5faeb4fc (diff)
downloadgnulib-9ebb49659d873a8395bd6918e58d1b56a9860b37.tar.gz
maint: avoid spurious "make sc_maint" failure
* cfg.mk (exclude_file_name_regexp--sc_trailing_blank): Also exempt all *.class file names, for lib/javaversion.class.
-rw-r--r--ChangeLog6
-rw-r--r--cfg.mk2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 034e3b9c69..54f33e90d0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2012-04-16 Jim Meyering <meyering@redhat.com>
+
+ maint: avoid spurious "make sc_maint" failure
+ * cfg.mk (exclude_file_name_regexp--sc_trailing_blank): Also
+ exempt all *.class file names, for lib/javaversion.class.
+
2012-04-15 Bruno Haible <bruno@clisp.org>
lseek: Make configure test independent of environment.
diff --git a/cfg.mk b/cfg.mk
index 2b4bcc8de1..3735b3dbdf 100644
--- a/cfg.mk
+++ b/cfg.mk
@@ -55,4 +55,4 @@ exclude_file_name_regexp--sc_prohibit_doubled_word = \
^(tests/test-init\.sh|lib/base(32|64)\.c)$$
exclude_file_name_regexp--sc_prohibit_openat_without_use = ^lib/selinux-at\.c$$
exclude_file_name_regexp--sc_trailing_blank = \
- ^(build-aux/texinfo\.tex|doc/Copyright/assign\.future\.manual)$$
+ ^(.*\.class|build-aux/texinfo\.tex|doc/Copyright/assign\.future\.manual)$$