From: Tom Tromey Date: Mon, 28 Oct 1996 22:04:42 +0000 (+0000) Subject: C++ bug fix X-Git-Tag: Release-1-1g~9 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=702fadc64a6afb8e6e2a3c2c8b7f83d6586ada9e;p=automake.git C++ bug fix --- diff --git a/ChangeLog b/ChangeLog index 6878ba85..748e3423 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Oct 28 10:43:48 1996 Tom Tromey + + * automake.in (handle_dependencies): Use -M, not -MM, for C++ + dependencies. + Thu Oct 24 20:21:50 1996 Tom Tromey * automake.in (check_libobjs_sources): New sub. Test diff --git a/TODO b/TODO index 5c0bd6db..a7f0ede2 100644 --- 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 diff --git a/automake.in b/automake.in index e032608c..cc12d04e 100755 --- a/automake.in +++ b/automake.in @@ -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)'); } } }