From a1afa63a3295f88c6cd57ed20831c833603d1844 Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Thu, 4 Dec 2003 18:07:13 +0000 Subject: [PATCH] * tests/ltlibsrc.test: Fix the zoo_d_old2_la.c rule in Makefile.am, $< is not portable and the source is in $(srcdir). --- ChangeLog | 5 +++++ tests/ltlibsrc.test | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 82f6667..f68aab4 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 cbb4ae8..8c76b19 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' -- 2.7.4