From: Alexandre Oliva Date: Sat, 10 Apr 1999 07:53:32 +0000 (+0000) Subject: * automake.in (handle_configure): Replace multiple occurrences of X-Git-Tag: v1.10.2~2653 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=01d23d439b1b718f5436aa6612ae3c28964f92da;p=platform%2Fupstream%2Fautomake.git * automake.in (handle_configure): Replace multiple occurrences of @STAMP@ in the same line; completes the patch for remake-hdr.am below. --- diff --git a/ChangeLog b/ChangeLog index b753ac0..aaba437 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 1999-04-10 Alexandre Oliva + * 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. diff --git a/automake.in b/automake.in index 3995d02..c29cfa0 100755 --- a/automake.in +++ b/automake.in @@ -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');