From: Jim Meyering Date: Sat, 1 Jan 2011 21:09:12 +0000 (+0100) Subject: maint: update-copyright: exempt doc/INSTALL* X-Git-Tag: v0.1~3409 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=897b54c334d903950172863b57b5de744b3c5092;p=gnulib.git maint: update-copyright: exempt doc/INSTALL* * Makefile (update-copyright): Also exclude doc/INSTALL*, since they are generated. Suggested by Bruno Haible. --- diff --git a/ChangeLog b/ChangeLog index dc8bd4038..06aa42513 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2011-01-01 Jim Meyering + 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 + maint: refine the update-copyright rule * Makefile (update-copyright): Also exclude any file that includes the "GENERATED AUTOMATICALLY" comment, being careful not to exclude diff --git a/Makefile b/Makefile index 745c603c7..c3bf4a979 100644 --- a/Makefile +++ b/Makefile @@ -60,6 +60,7 @@ MODULES.html: MODULES.html.sh # 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 @@ update-copyright: 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 \