summaryrefslogtreecommitdiff
path: root/Makefile.maint
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-08-26 18:27:00 +0000
committerJim Meyering <jim@meyering.net>2001-08-26 18:27:00 +0000
commitafb733429b7730d1f108fb3856be7d63521c0585 (patch)
tree98701f7e6e73b61e35f4cb1a5fa29af2f9b06a53 /Makefile.maint
parent9e24c8b0b80850ff04183b5375a4e3ba277f3ef2 (diff)
downloadcoreutils-afb733429b7730d1f108fb3856be7d63521c0585.tar.xz
(copyright-check): Update to reflect fact that
the copyright year is now defined separately.
Diffstat (limited to 'Makefile.maint')
-rw-r--r--Makefile.maint2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.maint b/Makefile.maint
index 7616992f3..a704a8f4f 100644
--- a/Makefile.maint
+++ b/Makefile.maint
@@ -105,7 +105,7 @@ v_etc_file = lib/version-etc.c
# Make sure that the copyright date in $(v_etc_file) is up to date.
copyright-check:
@if test -f $(v_etc_file); then \
- grep 'N_("Copyright (C) $(shell date +%Y) Free' $(v_etc_file) \
+ grep '^#define COPYRIGHT_YEAR "$(shell date +%Y)"' $(v_etc_file) \
>/dev/null \
|| { echo 'out of date copyright in $(v_etc_file); update it' 1>&2; \
exit 1; }; \