diff -r f8c7a61e794b -r c32873117195 common/tools/raptor/preprocess_log.pl --- a/common/tools/raptor/preprocess_log.pl Thu Jan 07 11:47:40 2010 +0000 +++ b/common/tools/raptor/preprocess_log.pl Mon Jan 11 12:27:20 2010 +0000 @@ -46,6 +46,10 @@ { $line = unterminated_archive_tag($line, scalar <>, $.) } + elsif ($line =~ m{make.exe: Circular .* <- .* dependency dropped.}) + { + $line = escape_left_angle_bracket($line); + } print $line; } @@ -92,3 +96,16 @@ return $line . $nextLine; } + +sub escape_left_angle_bracket +{ + my ($line) = @_; + + warn "escape_left_angle_bracket\n"; + warn "in: $line"; + + $line =~ s,<,<,g; + + warn "out: $line"; + return $line; +}