diff options
author | Noah Misch <noah@leadboat.com> | 2017-07-09 00:43:17 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2017-07-09 00:43:17 -0700 |
commit | 3381898f983b9d41c20b50bb1b39c173aa0129e3 (patch) | |
tree | 422dfde420f012d8dbaf08087445d8bf30743c49 /src | |
parent | ec4073f64130b40fabaa1b38ad402babda3a48eb (diff) | |
download | postgresql-3381898f983b9d41c20b50bb1b39c173aa0129e3.tar.gz postgresql-3381898f983b9d41c20b50bb1b39c173aa0129e3.zip |
MSVC: Repair libpq.rc generator.
It generates an empty file, so libpq.dll advertises no version
information. Commit facde2a98f0b5f7689b4e30a9e7376e926e733b8
mistranslated "print O;" in this one place.
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/msvc/Solution.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index fc71ebe7ada..01e5846b639 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -392,7 +392,7 @@ s{PG_VERSION_STR "[^"]+"}{PG_VERSION_STR "PostgreSQL $self->{strver}$extraver, c while (<$i>) { s/(VERSION.*),0/$1,$d/; - print $o; + print $o $_; } close($i); close($o); |