summaryrefslogtreecommitdiff
path: root/Makefile.maint
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-08-26 09:29:15 +0000
committerJim Meyering <jim@meyering.net>2003-08-26 09:29:15 +0000
commitd1f0b99838226fd4227e7a89a70efa44e6b64e3b (patch)
treea53091d771fc5510a4dc91bcd61c8aa4adeccce7 /Makefile.maint
parentaf78d9c564d1e67387e85d334c249c476eb49ef2 (diff)
downloadcoreutils-d1f0b99838226fd4227e7a89a70efa44e6b64e3b.tar.xz
(local-check): Rename as...
(local-checks-available): this. (local-check): New.
Diffstat (limited to 'Makefile.maint')
-rw-r--r--Makefile.maint6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.maint b/Makefile.maint
index 236435d67..44359c34b 100644
--- a/Makefile.maint
+++ b/Makefile.maint
@@ -56,11 +56,13 @@ export LC_ALL = C
# Checks that don't require cvs.
# Run `changelog-check' last, as previous test may reveal problems requiring
# new ChangeLog entries.
-local-check = \
+local-checks-available = \
po-check copyright-check writable-files m4-check author_mark_check \
changelog-check strftime-check syntax-check makefile_path_separator_check \
makefile-check
-.PHONY: $(local-check)
+.PHONY: $(local-checks-available)
+
+local-check = $(filter-out $(local-checks-to-skip), $(local-checks-available))
# Make sure C source files in src/ don't include xalloc.h directly,
# since they all already include it via sys2.h.