diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-06-13 11:50:27 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-06-13 11:50:34 -0400 |
commit | 1ad83738d0cd9b9af9a8f695eb9acc327a02c18b (patch) | |
tree | 8133692609251c3583aeadfe66de6f2433315003 | |
parent | 719dd9a64af5f2ec07a9cac16fb161a3c5c18010 (diff) | |
download | postgresql-1ad83738d0cd9b9af9a8f695eb9acc327a02c18b.tar.gz postgresql-1ad83738d0cd9b9af9a8f695eb9acc327a02c18b.zip |
Remove extraneous leading whitespace in Windows build script.
Apparently, at least some versions of Microsoft's shell fail on variable
assignments that have leading whitespace. This instance, introduced in
commit 680513ab7, managed to escape notice for awhile because it's only
invoked if building with OpenSSL. Per bug #14185 from Torben Dannhauer.
Report: <20160613140119.5798.78501@wrigleys.postgresql.org>
-rw-r--r-- | src/interfaces/libpq/win32.mak | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/libpq/win32.mak b/src/interfaces/libpq/win32.mak index 1b71ebd3870..45990b71890 100644 --- a/src/interfaces/libpq/win32.mak +++ b/src/interfaces/libpq/win32.mak @@ -167,8 +167,9 @@ LIB32_OBJS= \ "$(INTDIR)\win32error.obj" \ "$(INTDIR)\win32setlocale.obj" \ "$(INTDIR)\pthread-win32.obj" + !IFDEF USE_OPENSSL - LIB32_OBJS=$(LIB32_OBJS) "$(INTDIR)\fe-secure-openssl.obj" +LIB32_OBJS=$(LIB32_OBJS) "$(INTDIR)\fe-secure-openssl.obj" !ENDIF |