repo.or.cz
/
mailman.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Avoid an AttributeError in task runner.
[mailman.git]
/
generate_mo.sh
blob
d4f2f1625434dfb343d925a14d4a7974ebdc41fb
1
#!/bin/bash
2
3
# This script generates .mo files from all the .po files in the source.
4
5
echo
'Generating mo files for GNU Mailman ...'
6
for
file
in
`find . -name 'mailman.po'`
7
do
8
echo
$file
9
msgfmt
$file
-o
${file/po/mo}
-v
10
done