Hi, On Fri, 21 Nov 2014, Philip Oakley wrote: > From: "Johannes Schindelin" <Johannes.Schindelin@xxxxxx> > > > On Thu, 20 Nov 2014, Philip Oakley wrote: > > > > > @@ -343,8 +346,10 @@ sub handleLinkLine > > > } elsif ($part =~ /\.(a|lib)$/) { > > > $part =~ s/\.a$/.lib/; > > > push(@libs, $part); > > > - } elsif ($part =~ /\.(o|obj)$/) { > > > + } elsif ($part =~ /\.o$/) { # was '/\.(o|obj)$' > > > push(@objfiles, $part); > > > + } elsif ($part =~ /\.obj$/) { # was '/\.(o|obj)$' > > > + # push(@objfiles, $part); # do nothing > > > > How about the following instead? > > > > + } elsif ($part eq 'invalidcontinue.obj') { > > + # ignore > > } elsif ($part =~ /\.(o|obj)$/) { > > Looks good, I'll use that (after deciding whether .obj files should be > expected in a 'make' output anyway) My idea to hardcode invalidcontinue.obj was that I'd rather see a failure if an unexpected .obj is seen there. But I realize that my suggested change does not exactly accomplish that. Ciao, Johannes -- 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