projects
/
pgtranslation
/
admin.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1e07829
)
Fix bogus indirection
author
Peter Eisentraut
<peter_e@gmx.net>
Thu, 30 Sep 2010 20:09:57 +0000
(20:09 +0000)
committer
Peter Eisentraut
<peter_e@gmx.net>
Thu, 30 Sep 2010 20:09:57 +0000
(20:09 +0000)
wwwtools/pg-make-po
patch
|
blob
|
blame
|
history
diff --git
a/wwwtools/pg-make-po
b/wwwtools/pg-make-po
index c85f3936bcaaa9f893b45dffdfc8432f7200b6bb..2f57fc4a843fc7d52e2b2332c593987a76bb3aeb 100755
(executable)
--- a/
wwwtools/pg-make-po
+++ b/
wwwtools/pg-make-po
@@
-108,7
+108,7
@@
foreach (@ARGV) {
}
if (system("$msgfmt -o /dev/null -v -c $dirname/po/$lang.po >/dev/null 2>&1") != 0
- or system("$msgfmt -o /dev/null -v -c $dirname/po/$lang.po
>/dev/null
2>&1 | grep -q 'warning'") == 0) {
+ or system("$msgfmt -o /dev/null -v -c $dirname/po/$lang.po 2>&1 | grep -q 'warning'") == 0) {
system("$msgfmt -o /dev/null -v -c $dirname/po/$lang.po 2>>$outdir/$catalogname-$lang.po.err 1>/dev/null");
}