You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
221 B
18 lines
221 B
#! /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
|
|
|