Updated to ignore messages of the form "Nothing to be done for ..." as these do not represent a problem of any kind at all.
authorSimon Howkins <simonh@symbian.org>
Mon, 01 Feb 2010 11:35:14 +0000
changeset 868 a2ab739ff0b0
parent 867 f9bb7bea854b
child 869 11f6b5e5cd2d
Updated to ignore messages of the form "Nothing to be done for ..." as these do not represent a problem of any kind at all.
common/tools/raptor/RaptorUnreciped.pm
--- a/common/tools/raptor/RaptorUnreciped.pm	Fri Jan 29 12:11:02 2010 +0000
+++ b/common/tools/raptor/RaptorUnreciped.pm	Mon Feb 01 11:35:14 2010 +0000
@@ -45,7 +45,6 @@
 my $CATEGORY_RAPTORUNRECIPED = 'raptor_unreciped';
 my $CATEGORY_RAPTORUNRECIPED_NORULETOMAKETARGET = 'no_rule_to_make_target';
 my $CATEGORY_RAPTORUNRECIPED_TARGETNOTREMADEFORERRORS = 'target_not_remade_for_errors';
-my $CATEGORY_RAPTORUNRECIPED_NOTHINGTOBEDONEFOR = 'nothing_to_be_done_for';
 my $CATEGORY_RAPTORUNRECIPED_IGNORINGOLDCOMMANDSFORTARGET = 'ignoring_old_commands_for_target';
 my $CATEGORY_RAPTORUNRECIPED_OVERRIDINGCOMMANDSFORTARGET = 'overriding_commands_for_target';
 
@@ -83,9 +82,7 @@
 	}
 	elsif ($text =~ m,make\.exe: Nothing to be done for .*,)
 	{
-		$severity = $RaptorCommon::SEVERITY_MINOR;
-		my $subcategory = $CATEGORY_RAPTORUNRECIPED_NOTHINGTOBEDONEFOR;
-		RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file, $line);
+		# don't dump
 	}
 	elsif ($text =~ m,^(true|false)$,)
 	{
@@ -184,4 +181,4 @@
 }
 
 
-1;
\ No newline at end of file
+1;