From 524becc3cd7e38bb5c3d9a417633035f4e91f6f3 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Sun, 12 Feb 2006 22:03:07 +0000 Subject: [PATCH] * src/po/Makefile.am (.po.mo): Allow for parallel building. svn: r5926 --- gramps2/ChangeLog | 3 +++ gramps2/src/po/Makefile.am | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index f927dd991..2394b7fbd 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2006-02-12 Yaakov Selkowitz + * src/po/Makefile.am (.po.mo): Allow for parallel building. + 2006-02-12 Alex Roitman * src/plugins/ReadPkg.py (impData): Use persistent directory for unpacking the tarball: we need images to stay there. diff --git a/gramps2/src/po/Makefile.am b/gramps2/src/po/Makefile.am index 0207890fc..b21872011 100644 --- a/gramps2/src/po/Makefile.am +++ b/gramps2/src/po/Makefile.am @@ -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