diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Makefile.maint | 5 |
2 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,7 @@ 2006-07-08 Jim Meyering <jim@meyering.net> + * Makefile.maint (sc_the_the): New rule. + * src/dd.c (skip): Remove one of two adjacent "the"s in a comment. 2006-07-07 Jim Meyering <jim@meyering.net> diff --git a/Makefile.maint b/Makefile.maint index 6d2839309..10170a7d6 100644 --- a/Makefile.maint +++ b/Makefile.maint @@ -254,6 +254,11 @@ sc_sun_os_names: { echo '$(ME): found misuse of Sun OS version numbers' 1>&2; \ exit 1; } || : +sc_the_the: + @grep -ni '\<the ''the\>' $$($(CVS_LIST_EXCEPT)) && \ + { echo '$(ME): found use of "the ''the";' 1>&2; \ + exit 1; } || : + sc_tight_scope: $(MAKE) -C src $@ |