annotate po/regen_potfiles.sh @ 1022:9962b24b6b43

Move miscellaneous functions to their own files (new misc.[ch]).
author zas_
date Sun, 31 Aug 2008 10:51:41 +0000
parents 4581d3f03d22
children 351dd18c7db0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
584
4609c84c9ce0 Add an helper script to regenerate POTFILES.in file.
zas_
parents:
diff changeset
1 #!/bin/sh
4609c84c9ce0 Add an helper script to regenerate POTFILES.in file.
zas_
parents:
diff changeset
2
588
4581d3f03d22 Modify regen_potfiles.sh to generate a patch instead of
zas_
parents: 584
diff changeset
3 #generate a patch to update POTFILES.in
4581d3f03d22 Modify regen_potfiles.sh to generate a patch instead of
zas_
parents: 584
diff changeset
4 #Use like this: ./regen_potfiles.sh | patch -p0
4581d3f03d22 Modify regen_potfiles.sh to generate a patch instead of
zas_
parents: 584
diff changeset
5 (cd .. ; grep -l 'N\?_[[:space:]]*(.*)' ./src/*.c) > POTFILES.in.$$
4581d3f03d22 Modify regen_potfiles.sh to generate a patch instead of
zas_
parents: 584
diff changeset
6 diff -u POTFILES.in POTFILES.in.$$
4581d3f03d22 Modify regen_potfiles.sh to generate a patch instead of
zas_
parents: 584
diff changeset
7 rm -f POTFILES.in.$$