diff options
author | Alexandre Duret-Lutz <adl@gnu.org> | 2003-11-11 21:08:15 +0000 |
---|---|---|
committer | Alexandre Duret-Lutz <adl@gnu.org> | 2003-11-11 21:08:15 +0000 |
commit | ea5ee09312c62c3de4753df4c3a67527af04674b (patch) | |
tree | 43a8078b9c687c55fd5528db47da53851fb23536 /Makefile.in | |
parent | 1df5b2da0ba96bf4828038b4193658a99e60c258 (diff) | |
download | automake-ea5ee09312c62c3de4753df4c3a67527af04674b.tar.gz |
* Makefile.am (fetch): Get all files from savannah. Do not
postprocess Struct.pm and XFiles.pm, since we now are the master
of these.
* lib/config.sub, lib/config.guess, lib/config-ml.in,
lib/texinfo.tex: New upstream versions.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Makefile.in b/Makefile.in index 13b8b1c4c..8da0908b7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -157,6 +157,7 @@ do_subst = sed -e 's,[@]datadir[@],$(datadir),g' -e 's,[@]PERL[@],$(PERL),g' \ -e 's,[@]SHELL[@],$(SHELL),g' WGET = wget +WGETSGO = $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~ FETCHFILES = \ INSTALL \ config-ml.in \ @@ -764,14 +765,12 @@ fetch: rm -rf Fetchdir > /dev/null 2>&1 mkdir Fetchdir (cd Fetchdir && \ - $(WGET) ftp://ftp.gnu.org/gnu/config/config.guess; \ - $(WGET) ftp://ftp.gnu.org/gnu/config/config.sub; \ - $(WGET) ftp://ftp.gnu.org/gnu/texinfo/texinfo.tex; \ - $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~/autoconf/autoconf/INSTALL?content-type=text/plain -O INSTALL; \ - $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~/gcc/gcc/config-ml.in; \ - $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~/gcc/gcc/symlink-tree) - perl -pi -e 's/Autom4te::/Automake::/g' \ - Fetchdir/Automake/Struct.pm Fetchdir/Automake/XFile.pm + $(WGETSGO)/config/config/config.guess; \ + $(WGETSGO)/config/config/config.sub; \ + $(WGETSGO)/texinfo/texinfo/doc/texinfo.tex; \ + $(WGETSGO)/autoconf/autoconf/INSTALL; \ + $(WGETSGO)/gcc/gcc/config-ml.in; \ + $(WGETSGO)/gcc/gcc/symlink-tree) @stat=0; for file in $(FETCHFILES); do \ if diff -u $(srcdir)/lib/$$file Fetchdir/$$file \ >>Fetchdir/update.patch 2>/dev/null; then :; \ |