]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* Makefile.am (fetch): Update to match upstream git sources.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Mon, 14 Jan 2008 22:04:10 +0000 (22:04 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Mon, 14 Jan 2008 22:04:10 +0000 (22:04 +0000)
Pull `INSTALL' from gnulib instead of from Autoconf.

ChangeLog
Makefile.am

index 9fd2afe052548699942d5c6fb785ccbf737d03da..92dac2c3ca34ef3d0511bdb7ed40b0c886884ee7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2008-01-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
+       * Makefile.am (fetch): Update to match upstream git sources.
+       Pull `INSTALL' from gnulib instead of from Autoconf.
+
        * doc/notes.texi: Mention AIX binutils deficiency for C++ code.
        Report by Rainer Tammer.
        Suggest using bash for configure.  Hint to runtimelinking.
index 6ba4803812eea69a96ab20a03f44153212dd4065..217c4a27b763f595cbbdde697d33d15bb0bdd06e 100644 (file)
@@ -173,7 +173,8 @@ cvs-news:
 
 ## Program to use to fetch files.
 WGET = wget
-WGETSGO = $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~
+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='
 
 ## Files that we fetch and which we compare against.
 ## FIXME should be a lot more here
@@ -194,11 +195,11 @@ fetch:
        mkdir Fetchdir
 ## If a get fails then that is a problem.
        (cd Fetchdir && \
-       $(WGETSGO)/autoconf/autoconf/INSTALL; \
-       $(WGETSGO)/automake/automake/lib/install-sh; \
-       $(WGETSGO)/config/config/config.guess; \
-       $(WGETSGO)/config/config/config.sub; \
-       $(WGETSGO)/texinfo/texinfo/doc/texinfo.tex )
+       $(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 && \
+       $(WGETSGO)/texinfo/texinfo/doc/texinfo.tex -O texinfo.tex )
 ## Don't exit after test because we want to give as many errors as
 ## possible.
        @stat=0; for file in $(FETCHFILES); do \