Two small issues: 1) D'oh. Makefile.in depends on aclocal.m4 through am__configure_deps. So fix the install order to reflect that. At least I did get that right in branch-1-5. It's actually difficult to find this experimentally on modern hardware -- make install regularly completes these in less than a second. 2) fix for benefit of non-GNU make.
OK for HEAD? Cheers, Ralf * Makefile.am (ltdldatafiles): Fix installation order to match dependency order. (libltdl/Makefile.in): Use $(srcdir) for non-GNU make. Index: Makefile.am =================================================================== RCS file: /cvsroot/libtool/libtool/Makefile.am,v retrieving revision 1.164 diff -u -r1.164 Makefile.am --- Makefile.am 17 Sep 2005 07:31:39 -0000 1.164 +++ Makefile.am 18 Sep 2005 20:27:37 -0000 @@ -213,7 +213,7 @@ s,\$$(libltdl_,$$(,; p; }' $$in >> $$out; chmod a-w $(srcdir)/libltdl/Makefile.am -$(srcdir)/libltdl/Makefile.in: libltdl/Makefile.am +$(srcdir)/libltdl/Makefile.in: $(srcdir)/libltdl/Makefile.am cd $(srcdir)/libltdl && $(AUTOMAKE) Makefile # We want the libltdl files to be up to date as much as possible. @@ -384,9 +384,9 @@ ltdldatafiles = libltdl/COPYING.LIB \ libltdl/README \ libltdl/Makefile.am \ - libltdl/Makefile.in \ libltdl/configure.ac \ libltdl/aclocal.m4 \ + libltdl/Makefile.in \ libltdl/config-h.in \ libltdl/configure \ libltdl/argz_.h \