summaryrefslogtreecommitdiff
path: root/admin/update-copyright
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2014-10-25 15:36:23 -0400
committerEric S. Raymond <esr@thyrsus.com>2014-10-25 15:36:23 -0400
commit08072a468b7e0333bc7d45d5c01ee08575a64b00 (patch)
tree1ff206f10ce370dad7eb576b9695e982accadf99 /admin/update-copyright
parented81dc6d909ab8fb3907b153125e966bd8b9f404 (diff)
downloademacs-08072a468b7e0333bc7d45d5c01ee08575a64b00.tar.gz
Preparing foe git transition.
Diffstat (limited to 'admin/update-copyright')
-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 \
} &&
rm $emacsver.aux &&
-bzr_files=$(bzr ls -RV --kind file) &&
+# FIXME: command will soon need to be replaced with "git ls-files"
+repo_files=$(bzr ls -RV --kind file) &&
# Do not update the copyright of files that have one or more of the
# following problems:
# . They are license files, maintained by the FSF, with their own dates.
# . Their format cannot withstand changing the contents of copyright strings.
-updatable_files=$(find $bzr_files \
+updatable_files=$(find $repo_files \
! -name COPYING \
! -name doclicense.texi \
! -name gpl.texi \