Skip to content

Commit d168d0e

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 6d45ee5 commit d168d0e

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
@@ -219,6 +219,8 @@ sub fetchRegressOpts
219219
my $m = <$handle>;
220220
close($handle);
221221
my @opts;
222+
223+
$m =~ s{\\\r?\n}{}g;
222224
if ($m =~ /^\s*REGRESS_OPTS\s*=(.*)/m)
223225
{
224226

0 commit comments

Comments
 (0)