summaryrefslogtreecommitdiff
path: root/update-copyright.sh
blob: 962835d580c0c239cc8162d3be8d29dc0f2729e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/sh

export UPDATE_COPYRIGHT_USE_INTERVALS=2
find arch contrib font man tmac src \
     ! -name .gitignore \
     -type f | xargs ./gnulib/build-aux/update-copyright -

extra_files="
acinclude.m4
bootstrap.conf
configure.ac
gendef.sh
mdate.pl
test-groff.in
BUG-REPORT
Changelog
FOR-RELEASE
INSTALL.REPO
INSTALL.extra
LICENSES
MANIFEST
MORE.STUFF
Makefile.am
NEWS
PROBLEMS
PROJECTS
README
README.MinGW
TODO
doc/automake.mom
doc/doc.am
doc/groff.texi
doc/meref.me
doc/pic.ms
m4/groff.m4
m4/localcharset.m4
"
for k in $extra_files; do
    ./gnulib/build-aux/update-copyright $k
done