Added missing semis
authorTom Tromey <tromey@redhat.com>
Sat, 7 Dec 1996 20:44:48 +0000 (20:44 +0000)
committerTom Tromey <tromey@redhat.com>
Sat, 7 Dec 1996 20:44:48 +0000 (20:44 +0000)
ChangeLog
automake.in

index c1e262c..766915b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 Sat Dec  7 11:34:39 1996  Tom Tromey  <tromey@cygnus.com>
 
+       * automake.in (handle_dependencies): Added some missing ";"s in
+       transforms.
+
        * automake.in (am_install_var): Quote $ in regexp substitution.
        From Ulrich Drepper.
 
index dc89fa9..a7335c1 100755 (executable)
@@ -2179,8 +2179,8 @@ sub handle_dependencies
            &push_phony_cleaners ('depend');
            $output_rules .=
                &file_contents_with_transform ('s/\@EXT\@/.c/g;'
-                                              . 's/\@MKDEP\@/MKDEP/g'
-                                              . 's/^ONLYC//g',
+                                              . 's/\@MKDEP\@/MKDEP/g;'
+                                              . 's/^ONLYC//g;',
                                               'depend2');
            local ($ext);
            local ($need_cxx) = 0;
@@ -2188,7 +2188,7 @@ sub handle_dependencies
            {
                $output_rules .=
                    &file_contents_with_transform ('s/\@EXT\@/' . $ext .'/g;'
-                                                  . 's/\@MKDEP\@/CXXMKDEP/g'
+                                                  . 's/\@MKDEP\@/CXXMKDEP/g;'
                                                   . 's/^ONLYC.*$//;',
                                                   'depend2');
                $need_cxx = 1;