From: Zac Medico Date: Mon, 12 Jan 2009 08:13:04 +0000 (-0000) Subject: Fix the 'Unrecognized configure options' check for compatibility with X-Git-Tag: v2.1.6.5~40 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3047be67bb42e10d1e4b322fdd5ebb095fc501ea;p=portage.git Fix the 'Unrecognized configure options' check for compatibility with output produced by Autoconf 2.63. Thanks to Arfrever Frehtes Taifersar Arahesis for reporting. (trunk r12377) svn path=/main/branches/2.1.6/; revision=12447 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 6b3fefb29..ed688269b 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -4503,7 +4503,7 @@ def _check_build_log(mysettings, out=None): configure_opts_warn = [] configure_opts_warn_re = re.compile( - r'^configure: WARNING: Unrecognized options: ') + r'^configure: WARNING: [Uu]nrecognized options: ') am_maintainer_mode_re = re.compile(r'/missing --run ') am_maintainer_mode_exclude_re = \ re.compile(r'/missing --run (autoheader|makeinfo)')