# HG changeset patch # User Dario Sestito # Date 1274361211 -3600 # Node ID f10adc84543a85f0cd3b7513401de0dcc5e3a708 # Parent d01a4084d621a0a00ea3728ddd265c012fe2b3b6 Raise level of severity for 'make: no rule to make target' errors to major as they are root causes diff -r d01a4084d621 -r f10adc84543a uh_parser/RaptorUnreciped.pm --- a/uh_parser/RaptorUnreciped.pm Thu May 13 12:34:20 2010 +0100 +++ b/uh_parser/RaptorUnreciped.pm Thu May 20 14:13:31 2010 +0100 @@ -72,13 +72,13 @@ } elsif ($text =~ m,^make(\.exe)?: \*\*\* No rule to make target .* needed by .*,) { - $severity = $RaptorCommon::SEVERITY_MINOR; + $severity = $RaptorCommon::SEVERITY_MAJOR; my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_NORULETOMAKETARGETNEEDEDBY; RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file); } elsif ($text =~ m,^make(\.exe)?: \*\*\* No rule to make target .*,) { - $severity = $RaptorCommon::SEVERITY_MINOR; + $severity = $RaptorCommon::SEVERITY_MAJOR; my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_NORULETOMAKETARGET; RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file); }