]> sourceware.org Git - automake.git/commitdiff
C++ bug fix
authorTom Tromey <tromey@redhat.com>
Mon, 28 Oct 1996 22:04:42 +0000 (22:04 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 28 Oct 1996 22:04:42 +0000 (22:04 +0000)
ChangeLog
TODO
automake.in

index 6878ba85fa5001f0d89e02114ca4f34d331a0d12..748e3423e4397ac115c2fdf892123220c8e51d74 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Oct 28 10:43:48 1996  Tom Tromey  <tromey@cygnus.com>
+
+       * automake.in (handle_dependencies): Use -M, not -MM, for C++
+       dependencies.
+
 Thu Oct 24 20:21:50 1996  Tom Tromey  <tromey@cygnus.com>
 
        * automake.in (check_libobjs_sources): New sub.  Test
diff --git a/TODO b/TODO
index 5c0bd6dbf89cbf8ab7bbfc087170374caa9f4b48..a7f0ede279092b59f3da444f40e497311785fbf6 100644 (file)
--- a/TODO
+++ b/TODO
@@ -63,6 +63,10 @@ Per> then it should be able to realize it can build .class files from
 Per> .java files, and thus be able to generate a list of
 Per> .class files from a list of .java source files.
 
+From Jason Molenda:
+* allow a way to use "gzip --best"
+* don't assume GNU tar is "tar" (eg in distcheck)
+
 * actually use acinstall program
 
 !! Must fix require_file stuff.  It is really gross, and I don't
index e032608c3ab405d9e8f3de80448fb64a6ec209f2..cc12d04e76a64c4f8506e3bbf4b4e7ac908aa7b7 100755 (executable)
@@ -2013,7 +2013,7 @@ sub handle_dependencies
            }
            if ($need_cxx)
            {
-               &define_variable ('CXXMKDEP', '$(CXX) -MM $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS)');
+               &define_variable ('CXXMKDEP', '$(CXX) -M $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS)');
            }
        }
     }
This page took 0.040182 seconds and 5 git commands to generate.