]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
Ensure libltdl is up to date for check-local.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Thu, 10 Jun 2010 17:44:23 +0000 (19:44 +0200)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Thu, 10 Jun 2010 17:44:37 +0000 (19:44 +0200)
* Makefile.am (LTDL_BOOTSTRAP_DEPS): New variable.
(all-local): Use it to simplify dependencies.
(testsuite_deps_uninstalled): Add $(LTDL_BOOTSTRAP_DEPS).
Report by Peter Rosin.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
Makefile.am

index ce76dcfd4bd5f77b37801c25ab5276939a7a070f..c94b0c7718ce8e893c7b08a59277217ad6d41b3e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2010-06-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       Ensure libltdl is up to date for check-local.
+       * Makefile.am (LTDL_BOOTSTRAP_DEPS): New variable.
+       (all-local): Use it to simplify dependencies.
+       (testsuite_deps_uninstalled): Add $(LTDL_BOOTSTRAP_DEPS).
+       Report by Peter Rosin.
+
 2010-06-10  Gary V. Vaughan  <gary@gnu.org>
 
        Support shell tracing inside functions even with ksh.
index a7de46d5275563c43d989bbe615ddd38c1777b5f..7c7f571c5fd85f5db9c6a688e3d36d44cb4c82c7 100644 (file)
@@ -256,11 +256,13 @@ $(srcdir)/libltdl/Makefile.am: $(srcdir)/libltdl/Makefile.inc
 
 ## Unfortunately, all this bogeyness means that we have to manually
 ## keep the generated files in libltdl up to date.
-all-local: $(srcdir)/libltdl/aclocal.m4 \
+LTDL_BOOTSTRAP_DEPS = $(srcdir)/libltdl/aclocal.m4 \
        $(srcdir)/libltdl/stamp-mk \
        $(srcdir)/libltdl/configure \
        $(srcdir)/libltdl/config-h.in
 
+all-local: $(LTDL_BOOTSTRAP_DEPS)
+
 EXTRA_DIST += $(srcdir)/libltdl/stamp-mk $(m4dir)/lt~obsolete.m4
 
 $(srcdir)/libltdl/Makefile.in: $(srcdir)/libltdl/Makefile.am \
@@ -558,7 +560,8 @@ DISTCLEANFILES += tests/atconfig
 CD_TESTDIR     = abs_srcdir=`$(lt__cd) $(srcdir) && pwd`; cd tests
 
 testsuite_deps = tests/atconfig $(srcdir)/$(TESTSUITE)
-testsuite_deps_uninstalled = $(testsuite_deps) libltdl/libltdlc.la $(bin_SCRIPTS)
+testsuite_deps_uninstalled = $(testsuite_deps) libltdl/libltdlc.la \
+                            $(bin_SCRIPTS) $(LTDL_BOOTSTRAP_DEPS)
 
 # Hook the test suite into the check rule
 check-local: $(testsuite_deps_uninstalled)