* tests/ltlibsrc.test: Fix the zoo_d_old2_la.c rule in Makefile.am,
authorAlexandre Duret-Lutz <adl@gnu.org>
Thu, 4 Dec 2003 18:07:13 +0000 (18:07 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Thu, 4 Dec 2003 18:07:13 +0000 (18:07 +0000)
$< is not portable and the source is in $(srcdir).

ChangeLog
tests/ltlibsrc.test

index 82f6667..f68aab4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-12-04  Alexandre Duret-Lutz  <adl@gnu.org>
+
+       * 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  <bonzini@gnu.org>
            Alexandre Duret-Lutz  <adl@gnu.org>
 
index cbb4ae8..8c76b19 100755 (executable)
@@ -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'