changeset 14078:1a37c270d62d

maint: update-copyright: exempt doc/INSTALL* * Makefile (update-copyright): Also exclude doc/INSTALL*, since they are generated. Suggested by Bruno Haible.
author Jim Meyering <meyering@redhat.com>
date Sat, 01 Jan 2011 22:09:12 +0100
parents 4f7569e0b4ec
children 97fc9a21a8fb
files ChangeLog Makefile
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-01-01  Jim Meyering  <meyering@redhat.com>
+
+	maint: update-copyright: exempt doc/INSTALL*
+	* Makefile (update-copyright): Also exclude doc/INSTALL*,
+	since they are generated.  Suggested by Bruno Haible.
+
 2011-01-01  Jim Meyering  <meyering@redhat.com>
 
 	maint: refine the update-copyright rule
--- a/Makefile
+++ b/Makefile
@@ -60,6 +60,7 @@
 # as well as those in tests/unictype (generated).
 # Also exclude any file that includes the "GENERATED AUTOMATICALLY" comment,
 # being careful not to exclude code that merely generates the comment.
+# Also exclude doc/INSTALL*, since they too are generated.
 update-copyright:
 	exempt=$$(mktemp);						\
 	grep -v '^#' config/srclist.txt|grep -v '^$$'			\
@@ -69,6 +70,7 @@
 	      echo "$$dst"/$$(basename "$$src");			\
 	    done > $$exempt;						\
 	git ls-files tests/unictype >> $$exempt;			\
+	git ls-files doc/INSTALL* >> $$exempt;				\
 	git ls-files | grep -vFf $$exempt				\
 	  | xargs grep -L '^/\*.*GENERATED AUTOMATICALLY'		\
 	  | UPDATE_COPYRIGHT_MAX_LINE_LENGTH=79				\