]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
Fetch from new upstream host for config.guess and config.sub.
authorGary V. Vaughan <gary@gnu.org>
Fri, 4 Jun 2010 21:06:10 +0000 (04:06 +0700)
committerGary V. Vaughan <gary@gnu.org>
Fri, 4 Jun 2010 21:06:10 +0000 (04:06 +0700)
* Makefile.maint (WGET_CGIT): Location of newest config.guess and
config.sub upstream.
(fetch): Fetch config.guess and config.sub from WGET_CGIT, rather
than no-longer-updating WGET_SGO location.

ChangeLog
Makefile.maint

index 7a0472c9d5d059c0c8fb4da22ee66396b5a4c407..89be0939d9e8bb467e4f2375259cefbda90fb412 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2010-06-05  Gary V. Vaughan  <gary@gnu.org>
 
+       Fetch from new upstream host for config.guess and config.sub.
+       * Makefile.maint (WGET_CGIT): Location of newest config.guess and
+       config.sub upstream.
+       (fetch): Fetch config.guess and config.sub from WGET_CGIT, rather
+       than no-longer-updating WGET_SGO location.
+
        Update generated upload directive file format to v1.1.
        * Makefile.maint (git-dist, diffs): Update to generate v1.1 format
        directive files for ftp://ftp-upload.gnu.org/incoming/ftp.
index 70d881049d5589e32d5cd23c5d50629062ad5b92..e2fa628169f7461c0e82da3f9e7f1187120000c4 100644 (file)
@@ -121,6 +121,7 @@ check-news:
 WGET = wget
 WGETSGO = $(WGET) 'http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~'
 WGET_GIT = $(WGET) 'http://git.savannah.gnu.org/gitweb/?a=blob_plain;hb=HEAD;p='
+WGET_CGIT = $(WGET) 'http://git.savannah.gnu.org/cgit/config.git/plain'
 
 ## Files that we fetch and which we compare against.
 ## FIXME should be a lot more here
@@ -140,8 +141,8 @@ fetch:
        (cd Fetchdir && \
        $(WGET_GIT)'gnulib.git;f=doc/INSTALL' -O INSTALL && \
        $(WGET_GIT)'automake.git;f=lib/install-sh' -O install-sh && \
-       $(WGETSGO)/config/config/config.guess -O config.guess && \
-       $(WGETSGO)/config/config/config.sub -O config.sub && \
+       $(WGET_CGIT)/config.guess -O config.guess && \
+       $(WGET_CGIT)/config.sub -O config.sub && \
        $(WGETSGO)/texinfo/texinfo/doc/texinfo.tex -O texinfo.tex )
 ## Don't exit after test because we want to give as many errors as
 ## possible.