Raise level of severity for 'make: no rule to make target' errors to major as they are root causes
authorDario Sestito <darios@symbian.org>
Thu, 20 May 2010 14:13:31 +0100
changeset 241 f10adc84543a
parent 239 d01a4084d621
child 242 6266260d1fae
Raise level of severity for 'make: no rule to make target' errors to major as they are root causes
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);
 	}