X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=generate_POTFILES.sh;h=cff07c8df68fbc2bb4eeaa2b10d4ec05fb3d0a0b;hb=74ab8b52ffb455151c92e61ac9600a8cd4500b07;hp=adbc667f4062b20fc3a9046614f460329ea4ca80;hpb=d3d45b6755c6a8614cbc4c74cda69ecb1274918a;p=inkscape.git diff --git a/generate_POTFILES.sh b/generate_POTFILES.sh index adbc667f4..cff07c8df 100755 --- a/generate_POTFILES.sh +++ b/generate_POTFILES.sh @@ -19,6 +19,7 @@ rm -f po/POTFILES.in.new echo "# Generated by $prog at `date`" echo "[encoding: UTF-8]" echo "inkscape.desktop.in" + echo "share/filters/filters.svg.h" find src \( -name '*.cpp' -o -name '*.[ch]' \) -type f -print0 | xargs -0 egrep -l '(\<[QNC]?_|gettext) *\(' | sort find share/extensions -name '*.py' -type f -print0 | xargs -0 egrep -l '(\<[QNC]?_|gettext) *\(' | sort @@ -28,3 +29,6 @@ rm -f po/POTFILES.in.new diff -q po/POTFILES.in po/POTFILES.in.new ||: mv po/POTFILES.in.new po/POTFILES.in echo "Done." +echo "" +echo "Now you need to run 'make distcheck' to find all the" +echo "places that get broken because of this script."