In response to Didier in another thread, I don't think this patch was
applied.
Akim
| Akim Demaille <[EMAIL PROTECTED]> writes:
| | This patch is still lacking in the current Automake.
| |
| | Akim
|
| Thanks.
| I'll commit this instead:
|
| --- automake.in.~3~ Sat Apr 15 10:29:27 2000
| +++ automake.in Sat Apr 15 12:52:42 2000
| @@ -4402,8 +4402,8 @@ sub scan_one_configure_file
| &am_conf_line_error ($filename, $., "\`$1' is obsolete$hint");
| }
|
| - # Process the AC_OUTPUT macro.
| - if (! $in_ac_output && s/AC_OUTPUT\s*\(\[?//)
| + # Process the AC_OUTPUT and AC_CONFIG_FILES macros.
| + if (! $in_ac_output && s/AC_(OUTPUT|CONFIG_FILES)\s*\(\[?//)
| {
| $in_ac_output = 1;
| $ac_output_line = $.;
|
| | From: Harlan Stenn <[EMAIL PROTECTED]>
| | Subject: Re: obsolete AC_OUTPUT_COMMANDS in AM_CONFIG_HEADER
| | To: Akim Demaille <[EMAIL PROTECTED]>
| | cc: Erez Zadok <[EMAIL PROTECTED]>, [EMAIL PROTECTED], [EMAIL PROTECTED]
| | Date: Tue, 08 Feb 2000 20:44:52 -0500
| |
| | This patch seems to work for me to solve the problem of splitting the
| | original AC_OUTPUT(...) into AC_CONFIG_FILES(...) and AC_OUTPUT.
| |
| | It applies just as easily to automake.in .
| |
| | --- /usr/local/gnu/bin/automake Mon Dec 20 00:09:39 1999
| | +++ automake Sun Jan 23 17:19:31 2000
| | @@ -4397,6 +4397,12 @@
| | $in_ac_output = 1;
| | $ac_output_line = $.;
| | }
| | + # Process the AC_CONFIG_FILES macro.
| | + if (! $in_ac_output && s/AC_CONFIG_FILES\s*\(\[?//)
| | + {
| | + $in_ac_output = 1;
| | + $ac_output_line = $.;
| | + }
| | if ($in_ac_output)
| | {
| | local ($closing) = 0;
| |
| |
| | ----------
|