diff options
author | Alexandre Duret-Lutz <adl@gnu.org> | 2004-05-13 20:38:19 +0000 |
---|---|---|
committer | Alexandre Duret-Lutz <adl@gnu.org> | 2004-05-13 20:38:19 +0000 |
commit | 1bc9e9b7f80fd8484ac3081b0bcf810fa3774302 (patch) | |
tree | d653f18cbf052a0d3b1ff9e50083231ac4254d48 /tests | |
parent | 4978246f8abc391a1e2b04ee51c635cf3609a82f (diff) | |
download | automake-1bc9e9b7f80fd8484ac3081b0bcf810fa3774302.tar.gz |
* automake.in (handle_source_transform): Also check for a
$(srcdir)/old_source rule when computing the default source name.
Propagate this $(srcdir) prefix in Automake variables.
* tests/ltlibsrc.test (noinst_LTLIBRARIES): Explicitly refer to
$(srcdir)/zoo_d_old2_la.c. This fixes another failure with BSD Make.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/ltlibsrc.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ltlibsrc.test b/tests/ltlibsrc.test index 8c76b197b..dd7d33f70 100755 --- a/tests/ltlibsrc.test +++ b/tests/ltlibsrc.test @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004 Free Software Foundation, Inc. # # This file is part of GNU Automake. # @@ -38,7 +38,7 @@ AM_LDFLAGS = -module pkglib_LTLIBRARIES = zoo.d/bar.la old.la noinst_LTLIBRARIES = foo.la zoo.d/old2.la -zoo_d_old2_la.c: $(srcdir)/old_la.c +$(srcdir)/zoo_d_old2_la.c: $(srcdir)/old_la.c cp $(srcdir)/old_la.c $@ END |