view po/regen_potfiles.sh @ 1798:1cff176f8144

fixed segfault in exif parser http://sourceforge.net/tracker/index.php?func=detail&aid=2950617&group_id=222125&atid=1054682
author nadvornik
date Sun, 14 Feb 2010 22:00:23 +0000
parents 351dd18c7db0
children
line wrap: on
line source

#!/bin/sh

#generate a patch to update POTFILES.in
#Use like this: ./regen_potfiles.sh | patch -p0
TMP=POTFILES.in.$$
((find ../src/ -type f -name '*.c' ; find ../ -type f -name '*.desktop.in') | while read f; do
	(echo $f | sed 's#^../##')
done) | sort > $TMP
diff -u POTFILES.in $TMP
rm -f $TMP