summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/freetype/src/tools/update-copyright
blob: 4a8bf9b0ea831349a38c8f731ec1a0b71398d0df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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