changeset 20120:872f81de2865

Makefile: fix po file updating by using same file name everywhere The update is done on a temporary file since ce5d711475a3. The name of this file was first XX.po~ and has been changed to XX.po.tmp in all except of one place. Do this now.
author Simon Heimberg <simohe@besonet.ch>
date Sun, 17 Nov 2013 12:17:55 +0100
parents 1648e44edd8d
children 2af9e1d40dc7
files Makefile
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Sun Nov 24 17:29:10 2013 -0600
+++ b/Makefile	Sun Nov 17 12:17:55 2013 +0100
@@ -130,7 +130,7 @@
         # work on a temporary copy for never having a half completed target
 	cp $@ $@.tmp
 	msgmerge --no-location --update $@.tmp $^
-	mv -f $@~ $@
+	mv -f $@.tmp $@
 
 .PHONY: help all local build doc clean install install-bin install-doc \
 	install-home install-home-bin install-home-doc dist dist-notests tests \