aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
Diffstat (limited to 'admin')
-rwxr-xr-xadmin/update-copyright5
1 files changed, 3 insertions, 2 deletions
diff --git a/admin/update-copyright b/admin/update-copyright
index 2b33506f9c1..ce58168684e 100755
--- a/admin/update-copyright
+++ b/admin/update-copyright
@@ -45,14 +45,15 @@ sed 's/\\def\\year[{][0-9]*[}]/\\def\\year{'"$UPDATE_COPYRIGHT_YEAR"'}'/g \
45} && 45} &&
46rm $emacsver.aux && 46rm $emacsver.aux &&
47 47
48bzr_files=$(bzr ls -RV --kind file) && 48# FIXME: command will soon need to be replaced with "git ls-files"
49repo_files=$(bzr ls -RV --kind file) &&
49 50
50# Do not update the copyright of files that have one or more of the 51# Do not update the copyright of files that have one or more of the
51# following problems: 52# following problems:
52# . They are license files, maintained by the FSF, with their own dates. 53# . They are license files, maintained by the FSF, with their own dates.
53# . Their format cannot withstand changing the contents of copyright strings. 54# . Their format cannot withstand changing the contents of copyright strings.
54 55
55updatable_files=$(find $bzr_files \ 56updatable_files=$(find $repo_files \
56 ! -name COPYING \ 57 ! -name COPYING \
57 ! -name doclicense.texi \ 58 ! -name doclicense.texi \
58 ! -name gpl.texi \ 59 ! -name gpl.texi \