view po/regen_potfiles.sh @ 1681:351dd18c7db0

Fix POTFILES.in and update regen_potfiles.sh to add .desktop.in files.
author zas_
date Mon, 29 Jun 2009 16:02:28 +0000
parents 4581d3f03d22
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