Skip to content

Commit 0edc237

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 6aa98e9 commit 0edc237

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
@@ -246,6 +246,8 @@ sub fetchRegressOpts
246246
my $m = <$handle>;
247247
close($handle);
248248
my @opts;
249+
250+
$m =~ s{\\\r?\n}{}g;
249251
if ($m =~ /^\s*REGRESS_OPTS\s*=(.*)/m)
250252
{
251253

0 commit comments

Comments
 (0)