* automake.in (handle_configure): Replace multiple occurrences of
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Sat, 10 Apr 1999 07:53:32 +0000 (07:53 +0000)
committerAlexandre Oliva <oliva@dcc.unicamp.br>
Sat, 10 Apr 1999 07:53:32 +0000 (07:53 +0000)
@STAMP@ in the same line; completes the patch for remake-hdr.am
below.

ChangeLog
automake.in

index b753ac0..aaba437 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 1999-04-10  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
+       * automake.in (handle_configure): Replace multiple occurrences of
+       @STAMP@ in the same line; completes the patch for remake-hdr.am
+       below.
+
        * automake.in (handle_dependencies): Fix test for `autodep'
        support.
 
index 3995d02..c29cfa0 100755 (executable)
@@ -3191,7 +3191,7 @@ sub handle_configure
            $xform .= 's,\@CONFIG_HEADER\@,' . "${cn_sans_dir}" . ',;';
            $xform .= 's,\@CONFIG_HEADER_IN\@,' . "${ch_sans_dir}" . ',;';
            $xform .= 's,\@CONFIG_HEADER_FULL\@,' . "${one_fullname}" . ',;';
-           $xform .= 's,\@STAMP\@,' . "${stamp_dir}${stamp_name}" . ',;';
+           $xform .= 's,\@STAMP\@,' . "${stamp_dir}${stamp_name}" . ',g;';
 
            $output_rules .= &file_contents_with_transform ($xform,
                                                            'remake-hdr');