Skip to content

Commit d710116

Browse files
committed
Recognize Makefile line continuations in fetchRegressOpts().
Back-patch to 9.0 (all supported versions). This is mere future-proofing in the context of the master branch, but commit f6dc6dd requires it of older branches.
1 parent a652b0c commit d710116

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/tools/msvc/vcregress.pl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,8 @@ sub fetchRegressOpts
330330
my $m = <$handle>;
331331
close($handle);
332332
my @opts;
333+
334+
$m =~ s{\\\r?\n}{}g;
333335
if ($m =~ /^\s*REGRESS_OPTS\s*=(.*)/m)
334336
{
335337

0 commit comments

Comments
 (0)