view po/regen_potfiles.sh @ 2882:0149f1ddb297

Fix #656: make install fails on POTFILES.in (random-image plugin) https://github.com/BestImageViewer/geeqie/issues/656
author Andreas Rönnquist <>
date Sun, 06 Jan 2019 17:17:20 +0000
parents f451d676a829
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