* src/po/Makefile.am (.po.mo): Allow for parallel building.

svn: r5926
This commit is contained in:
Alex Roitman 2006-02-12 22:03:07 +00:00
parent fa8dde68bc
commit 524becc3cd
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,6 @@
2006-02-12 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
* src/po/Makefile.am (.po.mo): Allow for parallel building.
2006-02-12 Alex Roitman <shura@gramps-project.org>
* src/plugins/ReadPkg.py (impData): Use persistent directory for
unpacking the tarball: we need images to stay there.

View File

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