On 01/20/2010 11:23 AM, Ramsay Jones wrote: > diff --git a/contrib/buildsystems/engine.pl b/contrib/buildsystems/engine.pl > index d506717..245af73 100644 > --- a/contrib/buildsystems/engine.pl > +++ b/contrib/buildsystems/engine.pl > @@ -135,6 +135,11 @@ sub parseMakeOutput > } > } while($ate_next); > > + if ($text =~ /^test / && $text =~ /|| rm -f /) { That test on the right needs to escape its pipes or it will always match. --Pete > + # commands removing executables, if they exist > + next; > + } > + > if($text =~ / -c /) { > # compilation > handleCompileLine($text, $line); -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html