mirror of
https://github.com/videolan/vlc.git
synced 2024-12-04 07:15:24 +08:00
2683bad651
(It is already tested in dist(check) but that is way too slow.)
19 lines
221 B
Bash
Executable File
19 lines
221 B
Bash
Executable File
#! /bin/sh
|
|
|
|
top_srcdir="${srcdir}/.."
|
|
|
|
set -xe
|
|
|
|
cd ${top_srcdir}
|
|
|
|
grep -v '^#' po/POTFILES.in | \
|
|
while read f
|
|
do
|
|
test -n "$f" || continue
|
|
if test ! -f "$f"
|
|
then
|
|
echo "$f: source file missing!" >&2
|
|
exit 1
|
|
fi
|
|
done
|