uh_parser/RaptorUnreciped.pm
changeset 188 dbf40764ca6a
parent 186 b76adfbc6648
child 232 0244765a8d6f
equal deleted inserted replaced
187:ec83a06d23a8 188:dbf40764ca6a
    82 	{
    82 	{
    83 		$severity = $RaptorCommon::SEVERITY_MINOR;
    83 		$severity = $RaptorCommon::SEVERITY_MINOR;
    84 		my $subcategory = $CATEGORY_RAPTORUNRECIPED_OVERRIDINGCOMMANDSFORTARGET;
    84 		my $subcategory = $CATEGORY_RAPTORUNRECIPED_OVERRIDINGCOMMANDSFORTARGET;
    85 		RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file);
    85 		RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file);
    86 	}
    86 	}
    87 	elsif ($text =~ m,^make: Target .* not remade because of errors\.,)
    87 	elsif ($text =~ m,^make(\.exe)?: Target .* not remade because of errors\.,)
    88 	{
    88 	{
    89 		$severity = $RaptorCommon::SEVERITY_MINOR;
    89 		$severity = $RaptorCommon::SEVERITY_MINOR;
    90 		my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_TARGETNOTREMADEBECAUSEOFERRORS;
    90 		my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_TARGETNOTREMADEBECAUSEOFERRORS;
    91 		RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file);
    91 		RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file);
    92 	}
    92 	}
    93 	elsif ($text =~ m,^make: \*\*\* .* Error 1,)
    93 	elsif ($text =~ m,^make(\.exe)?: \*\*\* .* Error 1,)
    94 	{
    94 	{
    95 		$severity = $RaptorCommon::SEVERITY_MINOR;
    95 		$severity = $RaptorCommon::SEVERITY_MINOR;
    96 		my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_ERROR1;
    96 		my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_ERROR1;
    97 		RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file);
    97 		RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file);
    98 	}
    98 	}
    99 	elsif ($text =~ m,^make: \*\*\* No rule to make target .*\ needed by .*,)
    99 	elsif ($text =~ m,^make(\.exe)?: \*\*\* No rule to make target .*\ needed by .*,)
   100 	{
   100 	{
   101 		$severity = $RaptorCommon::SEVERITY_MINOR;
   101 		$severity = $RaptorCommon::SEVERITY_MINOR;
   102 		my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_NORULETOMAKETARGETNEEDEDBY;
   102 		my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_NORULETOMAKETARGETNEEDEDBY;
   103 		RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file);
   103 		RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file);
   104 	}
   104 	}
   105 	elsif ($text =~ m,^make: \*\*\* No rule to make target .*,)
   105 	elsif ($text =~ m,^make(\.exe)?: \*\*\* No rule to make target .*,)
   106 	{
   106 	{
   107 		$severity = $RaptorCommon::SEVERITY_MINOR;
   107 		$severity = $RaptorCommon::SEVERITY_MINOR;
   108 		my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_NORULETOMAKETARGET;
   108 		my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_NORULETOMAKETARGET;
   109 		RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file);
   109 		RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file);
   110 	}
   110 	}
   111 	elsif ($text =~ m,^make: Nothing to be done for .*,)
   111 	elsif ($text =~ m,^make(\.exe)?: Nothing to be done for .*,)
   112 	{
   112 	{
   113 		# don't dump
   113 		# don't dump
   114 		$dumped = 0;
   114 		$dumped = 0;
   115 	}
   115 	}
   116 	elsif ($text =~ m,^(true|false)$,)
   116 	elsif ($text =~ m,^(true|false)$,)