]> git.sesse.net Git - vlc/blob - test/check_POTFILES.sh
qt4: fix duplicate symbol
[vlc] / test / check_POTFILES.sh
1 #! /bin/sh
2
3 top_srcdir="${srcdir}/.."
4
5 set -xe
6
7 cd ${top_srcdir}
8
9 grep -v '^#' po/POTFILES.in | \
10 while read f
11 do
12         test -n "$f" || continue
13         if test ! -f "$f"
14         then
15                 echo "$f: source file missing!" >&2
16                 exit 1
17         fi
18 done