]> granicus.if.org Git - postgresql/commitdiff
Recognize Makefile line continuations in fetchRegressOpts().
authorNoah Misch <noah@leadboat.com>
Thu, 18 Dec 2014 08:55:17 +0000 (03:55 -0500)
committerNoah Misch <noah@leadboat.com>
Thu, 18 Dec 2014 08:55:40 +0000 (03:55 -0500)
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.

src/tools/msvc/vcregress.pl

index d5d398c995a6c91bb612a85a159328e0d0c766c2..8f9fc790e30ce34ff83381af5d87913d21c702d7 100644 (file)
@@ -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)
        {