diff options
author | Jim Meyering <meyering@redhat.com> | 2008-02-17 00:26:03 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-02-17 11:16:18 +0100 |
commit | 38bfb60c110e4de0746591f094704d3e7a0c154b (patch) | |
tree | 253ceffb1cff33e6bf87d5809a17e8395987e65f | |
parent | f0bafdb427952a22c057c985d5c9988475c4bda6 (diff) | |
download | coreutils-38bfb60c110e4de0746591f094704d3e7a0c154b.tar.xz |
Clean up Makefile.maint.
* Makefile.maint: Remove obsolete comments.
(local-checks-available): Remove changelog-check.
-rw-r--r-- | Makefile.maint | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Makefile.maint b/Makefile.maint index 6d280ff43..ec4b79dc9 100644 --- a/Makefile.maint +++ b/Makefile.maint @@ -69,20 +69,13 @@ export LC_ALL = C ## Sanity checks. ## ## --------------- ## -# FIXME: add a check to prohibit definition in src/*.c of symbols defined -# in system.h. E.g. today I removed from tail.c a useless definition of -# ENOSYS. It was useless because system.h ensures it's defined. - # Collect the names of rules starting with `sc_'. syntax-check-rules := $(shell sed -n 's/^\(sc_[a-zA-Z0-9_-]*\):.*/\1/p' $(ME)) .PHONY: $(syntax-check-rules) -# Checks that don't require cvs. -# Run `changelog-check' last, as previous test may reveal problems requiring -# new ChangeLog entries. local-checks-available = \ po-check copyright-check m4-check author_mark_check \ - changelog-check patch-check strftime-check $(syntax-check-rules) \ + patch-check strftime-check $(syntax-check-rules) \ makefile_path_separator_check \ makefile-check check-AUTHORS .PHONY: $(local-checks-available) |