freetype/src/tools/update-copyright
Werner Lemberg cb0f7b65a8 Fix automatic copyright updating.
* src/tools/update-copyright: Make scanning of `no-copyright'
actually work.

* src/tools/no-copyright: Don't include README in general.
2015-03-11 08:47:48 +01:00

15 lines
388 B
Bash
Executable File

#!/bin/sh
# Run the `update-copyright-year' script on all files in the git repository,
# taking care of exceptions stored in file `no-copyright'.
topdir=`git rev-parse --show-toplevel`
toolsdir=$topdir/src/tools
git ls-files --full-name $topdir \
| sed 's|^|../../|' \
| grep -vFf $toolsdir/no-copyright \
| xargs $toolsdir/update-copyright-year
# EOF