This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
13-configure-ac.patch
- To: Automake <automake at gnu dot org>
- Subject: 13-configure-ac.patch
- From: Akim Demaille <akim at epita dot fr>
- Date: Sun, 28 Jan 2001 17:15:26 +0100
- List-Id: Discussion list for automake <automake.gnu.org><mailto:automake-request@gnu.org?subject=unsubscribe>
Index: ChangeLog
from Akim Demaille <akim@epita.fr>
* automake.in (scan_one_autoconf_file): Correctly recognize
configure.ac.
Index: automake.in
--- automake.in Sun, 28 Jan 2001 15:53:16 +0100 akim (am/f/39_automake.i 1.16 755)
+++ automake.in Sun, 28 Jan 2001 15:57:15 +0100 akim (am/f/39_automake.i 1.16 755)
@@ -4571,11 +4571,11 @@ sub scan_one_autoconf_file
$configure_vars{'LEX'} = $filename . ':' . $.;
$seen_decl_yytext = 1;
}
- if (/AC_DECL_YYTEXT/ && $filename =~ /configure\.in$/)
+ if (/AC_DECL_YYTEXT/ && $filename =~ /configure\.(ac|in)$/)
{
&am_conf_line_warning ($filename, $., "\`AC_DECL_YYTEXT' is covered by \`AM_PROG_LEX'");
}
- if (/AC_PROG_LEX/ && $filename =~ /configure\.in$/)
+ if (/AC_PROG_LEX/ && $filename =~ /configure\.(ac|in)$/)
{
&am_conf_line_warning ($filename, $., "automake requires \`AM_PROG_LEX', not \`AC_PROG_LEX'");
}