Commit 6a56a38f authored by Andrew Dunstan's avatar Andrew Dunstan

Unbreak MSVC build broken by my port of flex check.

flex puts lex.backup in the current working directory regardless
of where the input and output are.
parent 6f9afc35
......@@ -67,7 +67,7 @@ if ($? == 0)
}
if ($flexflags =~ /\s-b\s/)
{
my $lexback = dirname($input) . "/lex.backup";
my $lexback = "lex.backup";
open($lfile,$lexback) || die "opening $lexback for reading: $!";
my $lexbacklines = <$lfile>;
close($lfile);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment