summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Oliva <oliva@dcc.unicamp.br>1999-04-10 07:53:32 +0000
committerAlexandre Oliva <oliva@dcc.unicamp.br>1999-04-10 07:53:32 +0000
commit01d23d439b1b718f5436aa6612ae3c28964f92da (patch)
tree31c6cc5bdef940cd6ff15c675aa9eefa10f601c2
parentaa1a3f6b6af5141bcd8b85162e4e4f4472e387fe (diff)
downloadautomake-01d23d439b1b718f5436aa6612ae3c28964f92da.tar.gz
* automake.in (handle_configure): Replace multiple occurrences of
@STAMP@ in the same line; completes the patch for remake-hdr.am below.
-rw-r--r--ChangeLog4
-rwxr-xr-xautomake.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b753ac0a8..aaba4379a 100644
--- 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.
diff --git a/automake.in b/automake.in
index 3995d0222..c29cfa0e3 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');