]> sourceware.org Git - automake.git/commitdiff
* 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 82f6667ff7a688fbef30c9fd118cf60afcc38b3e..f68aab4ed7e7a0d157c8fad5e3bfe5e8bc327dce 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 cbb4ae82525af732be4030aaeb8e1c53c6f049fc..8c76b197b801942da5605d3dd7fe26a17e93a202 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'
This page took 0.029004 seconds and 5 git commands to generate.