]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
* automake.in (handle_single_transform_list): Complain about
authorAlexandre Duret-Lutz <adl@gnu.org>
Wed, 30 Jul 2003 16:45:22 +0000 (16:45 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Wed, 30 Jul 2003 16:45:22 +0000 (16:45 +0000)
foo.$(OBJEXT) being created both with libtool and without, not
about foo.lo.
Report from Tim Van Holder.

ChangeLog
automake.in

index e1da5b3d48e0313fcd4f30e4d471f1350ee36ba6..59df3516cac91e2030cd5f4a299e3f8c6c1531ff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2003-07-30  Alexandre Duret-Lutz  <adl@gnu.org>
+
+       * automake.in (handle_single_transform_list): Complain about
+       foo.$(OBJEXT) being created both with libtool and without, not
+       about foo.lo.
+       Report from Tim Van Holder.
+
 2003-07-29  Alexandre Duret-Lutz  <adl@gnu.org>
 
        * Makefile.am (FETCHFILES, fetch): Add config-ml.in and
index e258f5916b38d12e0e0d5f84a9a474cf4ca54f5a..e6e4e2d7ca2b57abdc67f6244ab8251d47d4a6ec 100755 (executable)
@@ -1894,7 +1894,7 @@ sub handle_single_transform_list ($$$$@)
                != (COMPILE_LIBTOOL | COMPILE_ORDINARY))
            && $object_compilation_map{$comp_obj} != $comp_val)
          {
-           err_am "object `$object' created both with libtool and without";
+           err_am "object `$comp_obj' created both with libtool and without";
          }
        $object_compilation_map{$comp_obj} |= $comp_val;