From e72d2e5729b79eeeb1521c20624237b4fc952c6b Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 16 Mar 2001 08:40:38 +0000 Subject: (wget-update): Also get `missing'. Use for-loops. --- Makefile.maint | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Makefile.maint b/Makefile.maint index 7422990a2..0e92310ae 100644 --- a/Makefile.maint +++ b/Makefile.maint @@ -157,9 +157,14 @@ automake_repo=:pserver:anoncvs@anoncvs.cygnus.com:/cvs/automake .PHONY: wget-update wget-update: $(WGET) $(ftp-gnu)/texinfo/texinfo.tex -O $(srcdir)/doc/texinfo.tex - $(WGET) $(ftp-gnu)/config/config.guess -O $(srcdir)/config.guess - $(WGET) $(ftp-gnu)/config/config.sub -O $(srcdir)/config.sub - cvs -d $(automake_repo) co -p automake/depcomp > depcomp + for f in config.guess config.sub; do \ + $(WGET) $(ftp-gnu)/config/$$f -O $(srcdir)/$$f; \ + done + for f in depcomp missing; do \ + echo checking out $$f...; \ + cvs -d $(automake_repo) co -p automake/$$f > t$$$$ \ + && mv t$$$$ $$f; \ + done define emit-rsync-commands echo ===================================== -- cgit v1.2.3-54-g00ecf