[svn:parrot] r45026 - trunk/config/auto

petdance at svn.parrot.org petdance at svn.parrot.org
Thu Mar 18 20:54:37 UTC 2010


Author: petdance
Date: Thu Mar 18 20:54:36 2010
New Revision: 45026
URL: https://trac.parrot.org/parrot/changeset/45026

Log:
Add "ignoring option" to the regex for invalid options

Modified:
   trunk/config/auto/warnings.pm

Modified: trunk/config/auto/warnings.pm
==============================================================================
--- trunk/config/auto/warnings.pm	Thu Mar 18 20:26:43 2010	(r45025)
+++ trunk/config/auto/warnings.pm	Thu Mar 18 20:54:36 2010	(r45026)
@@ -386,7 +386,7 @@
 
     $verbose and print "  output: $output\n";
 
-    if ( $output !~ /error|warning|not supported/i ) {
+    if ( $output !~ /error|warning|not supported|ignoring option/i ) {
         push @{$self->{'validated'}}, $warning;
         $verbose and print "    valid warning: '$warning'\n";
         return 1;


More information about the parrot-commits mailing list