* src/po/Makefile.am (.po.mo): Avoid using temp file as it breaks

distcheck -- use pipe instead.


svn: r5995
This commit is contained in:
Alex Roitman 2006-02-26 18:07:44 +00:00
parent 264d06b2a9
commit 877faeb4c4
2 changed files with 5 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2006-02-26 Alex Roitman <shura@gramps-project.org>
* src/po/Makefile.am (.po.mo): Avoid using temp file as it breaks
distcheck -- use pipe instead.
2006-02-26 Doug Blank <Doug.Blank@gmail.com>
* src/plugins/Calendar.py (Widget.register): Do not add help
strings to style widgets.

View File

@ -20,7 +20,4 @@ uninstall-local:
SUFFIXES = .po .mo
.po.mo:
$(MSGCONV) --to-code=UTF-8 $< -o $<.temp
$(MSGFMT) $<.temp -o $@
rm $<.temp
$(MSGCONV) --to-code=UTF-8 $< | $(MSGFMT) - -o $@