diff options
author | Noah Misch <noah@leadboat.com> | 2014-12-18 03:55:17 -0500 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2014-12-18 03:55:40 -0500 |
commit | 4a48b4cb390656471ddf52f469ecb56d4e399df1 (patch) | |
tree | db573dfe6bd6c67d7aca472fc746bba5dee362b7 | |
parent | ce083254919d08043fc5c8b060f322f6bc84d1c0 (diff) |
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
f6dc6dd5ba54d52c0733aaafc50da2fbaeabb8b0 requires it of older branches.
-rw-r--r-- | src/tools/msvc/vcregress.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl index d5d398c995a..8f9fc790e30 100644 --- a/src/tools/msvc/vcregress.pl +++ b/src/tools/msvc/vcregress.pl @@ -338,6 +338,8 @@ sub fetchRegressOpts my $m = <$handle>; close($handle); my @opts; + + $m =~ s{\\\r?\n}{}g; if ($m =~ /^\s*REGRESS_OPTS\s*=(.*)/m) { |