Hello,
  I have installed current CVS version of Autoconf, and have run
Automake's "make check".  The following tests failed, because
automake wasn't able to --add-missing config.rpath:
    gettext.test gettext2.test subcond.test

When I installed config.rpath to automake/lib, all three test
passed.

I suggest to add config.rpath to the files distributed by Automake,
see the attached patch.  (After applying, please run "make fetch" and
cvs add lib/config.rpath, and then commit.)

As a bonus, I attached two typos.  ;-)

Have a nice day,
        Stepan Kasal
2006-05-23  Stepan Kasal  <[EMAIL PROTECTED]>

        * Makefile.am (FETCHFILES): Add config.rpath.
        (fetch): Likewise, and let make fail if any of the wget calls
        fails.
        (WGETSGO): Update the URL.
        * lib/Makefile.am (dist_script_DATA): Add config.rpath.

--- Makefile.am 2006-05-22 18:13:06.000000000 +0200
+++ Makefile.am 2006-05-23 12:57:41.000000000 +0200
@@ -340,7 +340,7 @@
 
 ## Program to use to fetch files.
 WGET = wget
-WGETSGO = $(WGET) http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~
+WGETSGO = $(WGET) http://cvs.savannah.gnu.org/viewcvs/~checkout~
 
 ## Files that we fetch and which we compare against.
 ## FIXME should be a lot more here
@@ -348,6 +348,7 @@
 INSTALL \
 config-ml.in \
 config.guess \
+config.rpath \
 config.sub \
 symlink-tree \
 texinfo.tex
@@ -358,11 +359,12 @@
        mkdir Fetchdir
 ## If a get fails then that is a problem.
        (cd Fetchdir && \
-       $(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)/config/config/config.guess && \
+       $(WGETSGO)/config/config/config.sub && \
+       $(WGETSGO)/texinfo/texinfo/doc/texinfo.tex && \
+       $(WGETSGO)/autoconf/autoconf/INSTALL && \
+       $(WGETSGO)/gettext/gettext/autoconf-lib-link/config.rpath && \
+       $(WGETSGO)/gcc/gcc/config-ml.in && \
        $(WGETSGO)/gcc/gcc/symlink-tree)
 ## Don't exit after test because we want to give as many errors as
 ## possible.
--- lib/Makefile.am     2005-05-14 22:28:50.000000000 +0200
+++ lib/Makefile.am     2006-05-23 12:44:30.000000000 +0200
@@ -30,7 +30,7 @@
 scriptdir = $(pkgvdatadir)
 dist_script_DATA = config.guess config.sub install-sh mdate-sh missing \
   mkinstalldirs elisp-comp ylwrap acinstall depcomp compile py-compile \
-  symlink-tree
+  symlink-tree config.rpath
 
 EXTRA_DIST = gnupload
 
Index: ChangeLog
===================================================================
RCS file: /cvs/automake/automake/ChangeLog,v
retrieving revision 1.2891
diff -u -r1.2891 ChangeLog
--- ChangeLog   17 May 2006 02:03:02 -0000      1.2891
+++ ChangeLog   22 May 2006 16:11:36 -0000
@@ -1,6 +1,6 @@
 2006-05-17  Ralf Wildenhues  <[EMAIL PROTECTED]>
 
-       * lib/Autom4te/Configure_ac.pm (find_configure_ac): Use
+       * lib/Automake/Configure_ac.pm (find_configure_ac): Use
        `$configure_in' instead of `configure.in', to preserve
        directory component.
        * lib/Automake/Configure_ac.pm: Add note that Automake owns
Index: THANKS
===================================================================
RCS file: /cvs/automake/automake/THANKS,v
retrieving revision 1.283
diff -u -r1.283 THANKS
--- THANKS      10 May 2006 20:55:34 -0000      1.283
+++ THANKS      22 May 2006 16:13:33 -0000
@@ -197,7 +197,7 @@
 Norman Gray            [EMAIL PROTECTED]
 Nyul Laszlo            [EMAIL PROTECTED]
 OKUJI Yoshinori                [EMAIL PROTECTED]
-Olivier Fourdan                [EMAIL PROTECTED]>
+Olivier Fourdan                [EMAIL PROTECTED]
 Olivier Louchart-Fletcher [EMAIL PROTECTED]
 Olly Betts             [EMAIL PROTECTED]
 Oren Ben-Kiki          [EMAIL PROTECTED]

Reply via email to