Skip to content
Snippets Groups Projects
Commit 6a56a38f authored by Andrew Dunstan's avatar Andrew Dunstan
Browse files

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
Branches
Tags
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment