summaryrefslogtreecommitdiff
path: root/maintMakefile
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2003-10-22 04:35:27 +0000
committerPaul Smith <psmith@gnu.org>2003-10-22 04:35:27 +0000
commit74216b00a461e6002640cf98c66f5c137e84470b (patch)
treeeee7a86035d59c2205d308eeb0b0c979d8a61d41 /maintMakefile
parentdb401d8e0af7fe6e3ca83afc502ed8ca0cae550e (diff)
downloadgunmake-74216b00a461e6002640cf98c66f5c137e84470b.tar.gz
Build fixes due to changes in the FSF web site.
Add new language support. Minor configure, etc. cleanups.
Diffstat (limited to 'maintMakefile')
-rw-r--r--maintMakefile19
1 files changed, 12 insertions, 7 deletions
diff --git a/maintMakefile b/maintMakefile
index 1c93463..796a221 100644
--- a/maintMakefile
+++ b/maintMakefile
@@ -118,7 +118,7 @@ move_if_change = if test -r $(target) && cmp -s $(target).t $(target); then \
# Updating PO files. #
# ------------------- #
-po_repo = http://www.iro.umontreal.ca/contrib/po/maint/$(PACKAGE)
+po_repo = http://www2.iro.umontreal.ca/%7Egnutra/po/maint/$(PACKAGE)
.PHONY: do-po-update po-update
do-po-update:
tmppo=/tmp/$(PACKAGE)-$(VERSION)-po &&\
@@ -144,15 +144,11 @@ po-update:
# $(srcdir)/src/ansi2knr.c
-wget_files ?= $(srcdir)/config/config.guess $(srcdir)/config/config.sub \
- $(srcdir)/doc/texinfo.tex $(srcdir)/doc/make-stds.texi \
+wget_files ?= $(srcdir)/doc/texinfo.tex $(srcdir)/doc/make-stds.texi \
$(srcdir)/doc/fdl.texi
wget-targets = $(patsubst %, get-%, $(wget_files))
-config.guess-url_prefix = $(ftp-gnu)/config/
-config.sub-url_prefix = $(ftp-gnu)/config/
-
ansi2knr.c-url_prefix = ftp://ftp.cs.wisc.edu/ghost/
texinfo.tex-url_prefix = $(ftp-gnu)/texinfo/
@@ -170,12 +166,21 @@ $(wget-targets):
&& $(WGET) $(url) -O $(target).t \
&& $(move_if_change)
+config-prefix = http://savannah.gnu.org/cgi-bin/viewcvs/config
+config-url = $(config-prefix)/$(patsubst get-%,%,$@)?rev=HEAD
+get-config/config.guess get-config/config.sub:
+ @echo $(WGET) $(config-url) -O $(target) \
+ && $(WGET) $(config-url) -O $(target).t \
+ && $(move_if_change)
+
+
.PHONY: wget-update
wget-update: $(wget-targets)
# Updating tools via CVS.
cvs_files ?= depcomp missing
+# config/config.guess config/config.sub
cvs-targets = $(patsubst %, get-%, $(cvs_files))
automake_repo = :pserver:anoncvs@anoncvs.cygnus.com:/cvs/automake
@@ -186,7 +191,7 @@ $(cvs-targets):
&& $(move_if_change)
.PHONY: cvs-update
-cvs-update: $(cvs-targets)
+cvs-update: $(cvs-targets) get-config/config.guess get-config/config.sub
# --------------------- #