From afe7f724e6c1f3cbcdf957537699d04fb9cd7d10 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 26 Apr 2000 12:16:24 +0000 Subject: [PATCH] (scan_one_configure_file): Handle the AC_CONFIG_FILES macro. Based on a patch from Harlan Stenn. --- automake.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automake.in b/automake.in index fe5f6fcf..f9eaf89d 100755 --- a/automake.in +++ b/automake.in @@ -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 = $.; -- 2.43.5