From 877faeb4c48829bada2c4184b611ac2243407129 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Sun, 26 Feb 2006 18:07:44 +0000 Subject: [PATCH] * src/po/Makefile.am (.po.mo): Avoid using temp file as it breaks distcheck -- use pipe instead. svn: r5995 --- gramps2/ChangeLog | 4 ++++ gramps2/src/po/Makefile.am | 5 +---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 5f66b9512..2a41f1c94 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,7 @@ +2006-02-26 Alex Roitman + * src/po/Makefile.am (.po.mo): Avoid using temp file as it breaks + distcheck -- use pipe instead. + 2006-02-26 Doug Blank * src/plugins/Calendar.py (Widget.register): Do not add help strings to style widgets. diff --git a/gramps2/src/po/Makefile.am b/gramps2/src/po/Makefile.am index b21872011..853c1a43a 100644 --- a/gramps2/src/po/Makefile.am +++ b/gramps2/src/po/Makefile.am @@ -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 $@