Skip to content

Commit a47f38e

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 2ab19ce commit a47f38e

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
@@ -333,6 +333,8 @@ sub fetchRegressOpts
333333
my $m = <$handle>;
334334
close($handle);
335335
my @opts;
336+
337+
$m =~ s{\\\r?\n}{}g;
336338
if ($m =~ /^\s*REGRESS_OPTS\s*=(.*)/m)
337339
{
338340

0 commit comments

Comments
 (0)