mirror of
https://https.git.savannah.gnu.org/git/groff.git
synced 2026-01-26 07:37:53 +00:00
* update-copyright.sh: use gnulib's 'update-copyright' script. Pass this script in directories 'arch', 'contrib', 'font', 'man', 'tmac', 'src' and on a list of extra files. * FOR-RELEASE: mention this point.
41 lines
586 B
Bash
Executable File
41 lines
586 B
Bash
Executable File
#!/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
|