diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-07-25 14:17:30 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-07-25 14:17:30 +0000 |
commit | 1eb5f925c21affa23a00d4eace457eea77f1fe2e (patch) | |
tree | 0911c4641538664b43f0d7c154bf461d475871c0 | |
parent | 9218b66f71e0813a69053b06146c1136123bf27b (diff) |
Call msgfmt with -c to catch format errors.
2005-07-25 Matthias Clasen <mclasen@redhat.com>
* Makefile.in.in: Call msgfmt with -c to catch
format errors.
-rw-r--r-- | po/Makefile.in.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 092b4e0dc..75c7a7116 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -78,7 +78,7 @@ INSTOBJEXT = @INSTOBJEXT@ .po.gmo: file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \ - && rm -f $$file && $(GMSGFMT) -o $$file $< + && rm -f $$file && $(GMSGFMT) -c -o $$file $< .po.cat: sed -f ../intl/po2msg.sed < $< > $*.msg \ |