Makefile: fix po file updating by using same file name everywhere
authorSimon Heimberg <simohe@besonet.ch>
Sun, 17 Nov 2013 12:17:55 +0100
changeset 20120 872f81de2865
parent 20119 1648e44edd8d
child 20121 2af9e1d40dc7
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.
Makefile
--- 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 \