Skip to content

Commit 3381898

Browse files
committed
MSVC: Repair libpq.rc generator.
It generates an empty file, so libpq.dll advertises no version information. Commit facde2a mistranslated "print O;" in this one place.
1 parent ec4073f commit 3381898

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/msvc/Solution.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ s{PG_VERSION_STR "[^"]+"}{PG_VERSION_STR "PostgreSQL $self->{strver}$extraver, c
392392
while (<$i>)
393393
{
394394
s/(VERSION.*),0/$1,$d/;
395-
print $o;
395+
print $o $_;
396396
}
397397
close($i);
398398
close($o);

0 commit comments

Comments
 (0)