From: Alexandre Duret-Lutz Date: Thu, 4 Dec 2003 18:07:13 +0000 (+0000) Subject: * tests/ltlibsrc.test: Fix the zoo_d_old2_la.c rule in Makefile.am, X-Git-Tag: Release-1-8~13 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=92624cdf5eb4a93f4010cd71e2e22a788cd59865;p=automake.git * tests/ltlibsrc.test: Fix the zoo_d_old2_la.c rule in Makefile.am, $< is not portable and the source is in $(srcdir). --- diff --git a/ChangeLog b/ChangeLog index 82f6667f..f68aab4e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-12-04 Alexandre Duret-Lutz + + * tests/ltlibsrc.test: Fix the zoo_d_old2_la.c rule in Makefile.am, + $< is not portable and the source is in $(srcdir). + 2003-12-03 Paolo Bonzini Alexandre Duret-Lutz diff --git a/tests/ltlibsrc.test b/tests/ltlibsrc.test index cbb4ae82..8c76b197 100755 --- a/tests/ltlibsrc.test +++ b/tests/ltlibsrc.test @@ -38,8 +38,8 @@ AM_LDFLAGS = -module pkglib_LTLIBRARIES = zoo.d/bar.la old.la noinst_LTLIBRARIES = foo.la zoo.d/old2.la -zoo_d_old2_la.c: old_la.c - cp $< $@ +zoo_d_old2_la.c: $(srcdir)/old_la.c + cp $(srcdir)/old_la.c $@ END cat > foo.c << 'END'