2011-10-09 00:44:21 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if [ ! -f "po/Makevars" ]; then
|
|
|
|
echo "You must run this script in the top-level directory"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
find . -name '*.c' |
|
|
|
|
sort |
|
|
|
|
sed 's|^./||
|
2021-01-28 17:05:33 +05:30
|
|
|
/^contrib/d
|
|
|
|
/^procps-ng/d' > po/POTFILES.in
|
2014-04-16 14:26:03 +05:30
|
|
|
|
2022-08-29 16:20:53 +05:30
|
|
|
echo local/c.h >> po/POTFILES.in
|