Skip to content

Commit 8892170

Browse files
committed
Silence warning from modern perl about unescaped braces
Back-patch commit 76a1c97 into the older branches (9.5 and before). This is needed because perl 5.26 and later treats the case as an error not just a warning. Original patch by Andrew Dunstan, need for back-patch noted by Ashutosh Sharma Discussion: https://postgr.es/m/CAE9k0PkfNcmj9pA7Yx4qQ=K=3aY4TuiRhp7KYpayDWm9MYsnjg@mail.gmail.com
1 parent a282d18 commit 8892170

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/msvc/Install.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ sub CopySolutionOutput
220220
my $conf = shift;
221221
my $target = shift;
222222
my $rem =
223-
qr{Project\("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}"\) = "([^"]+)"};
223+
qr{Project\("\{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942\}"\) = "([^"]+)"};
224224

225225
my $sln = read_file("pgsql.sln") || croak "Could not open pgsql.sln\n";
226226

0 commit comments

Comments
 (0)