repo.or.cz
/
herrie-working.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Comment out the URL to the Doxygen page.
[herrie-working.git]
/
updatestuff
blob
cba9db02b2b7187c0d24a22e09fee8abbf481145
1
#!/bin/sh
2
3
set -e
4
5
# Make sure we are in the proper directory
6
cd
`dirname
$0
`
/
herrie
/
src
7
8
# Update depends file
9
make
-C
..
/
..
/
misc cdepcalc
10
..
/
..
/
misc
/
cdepcalc
11
12
# Update translations
13
xgettext
-k_
*
.c
14
mv
messages.po ..
/
po
/
herrie.pot
15
16
cd
..
/
po
17
for
i
in
*
.po
18
do
19
msgmerge
$i
herrie.pot
>
tmp.po
20
mv
tmp.po
$i
21
done