From bd30df44788c6a74ab9943b8b41b12df338e105b Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Sun, 7 Sep 2014 16:54:36 -0400 Subject: * configure.ac, maintMakefile, w32/Makefile.am: Fix autotools issues. Reported by Paul Eggert --- maintMakefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'maintMakefile') diff --git a/maintMakefile b/maintMakefile index 69cb586..7f34860 100644 --- a/maintMakefile +++ b/maintMakefile @@ -141,13 +141,13 @@ ChangeLog: .check-git-HEAD ## Updating files. ## ## ---------------- ## -WGET = wget --passive-ftp -nv +WGET = wget --passive-ftp -np -nv ftp-gnu = ftp://ftp.gnu.org/gnu move_if_change = if test -r $(target) && cmp -s $(target).t $(target); then \ echo $(target) is unchanged; rm -f $(target).t; \ else \ - mv $(target).t $(target); \ + mv -f $(target).t $(target); \ fi # ------------------- # @@ -159,8 +159,7 @@ move_if_change = if test -r $(target) && cmp -s $(target).t $(target); then \ # http://translation.sf.net/maint/ # ftp://tiger.informatik.hu-berlin.de/pub/po/maint/ -po_wget_flags = --recursive --level=1 --no-directories --no-parent \ - --no-check-certificate +po_wget_flags = --recursive --level=1 --no-directories --no-check-certificate po_repo = http://translationproject.org/latest/$(PACKAGE) .PHONY: do-po-update po-update do-po-update: @@ -169,7 +168,8 @@ do-po-update: && mkdir "$$tmppo" \ && (cd "$$tmppo" \ && $(WGET) $(po_wget_flags) -A '*.po' $(po_repo)) \ - && cp "$$tmppo"/*.po $(top_srcdir)/po && rm -rf "$$tmppo" + && cp "$$tmppo"/*.po $(top_srcdir)/po \ + && rm -rf "$$tmppo" cd po && $(MAKE) update-po $(MAKE) po-check -- cgit v1.2.3