# HG changeset patch # User Dario Sestito # Date 1268138184 0 # Node ID dbf40764ca6ad49999b27b4edb3d7dc3755edad6 # Parent ec83a06d23a87e15f056b4ecfddecb7afb685102 Match both make: and make.exe: in some unreciped regexp diff -r ec83a06d23a8 -r dbf40764ca6a uh_parser/RaptorUnreciped.pm --- a/uh_parser/RaptorUnreciped.pm Tue Mar 09 12:25:31 2010 +0000 +++ b/uh_parser/RaptorUnreciped.pm Tue Mar 09 12:36:24 2010 +0000 @@ -84,31 +84,31 @@ my $subcategory = $CATEGORY_RAPTORUNRECIPED_OVERRIDINGCOMMANDSFORTARGET; RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file); } - elsif ($text =~ m,^make: Target .* not remade because of errors\.,) + elsif ($text =~ m,^make(\.exe)?: Target .* not remade because of errors\.,) { $severity = $RaptorCommon::SEVERITY_MINOR; my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_TARGETNOTREMADEBECAUSEOFERRORS; RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file); } - elsif ($text =~ m,^make: \*\*\* .* Error 1,) + elsif ($text =~ m,^make(\.exe)?: \*\*\* .* Error 1,) { $severity = $RaptorCommon::SEVERITY_MINOR; my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_ERROR1; RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file); } - elsif ($text =~ m,^make: \*\*\* No rule to make target .*\ needed by .*,) + elsif ($text =~ m,^make(\.exe)?: \*\*\* No rule to make target .*\ needed by .*,) { $severity = $RaptorCommon::SEVERITY_MINOR; my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_NORULETOMAKETARGETNEEDEDBY; RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file); } - elsif ($text =~ m,^make: \*\*\* No rule to make target .*,) + elsif ($text =~ m,^make(\.exe)?: \*\*\* No rule to make target .*,) { $severity = $RaptorCommon::SEVERITY_MINOR; my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_NORULETOMAKETARGET; RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file); } - elsif ($text =~ m,^make: Nothing to be done for .*,) + elsif ($text =~ m,^make(\.exe)?: Nothing to be done for .*,) { # don't dump $dumped = 0;