summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2016-06-13 15:50:27 +0000
committerTom Lane2016-06-13 15:50:27 +0000
commitcd9b4f24ce5f24de5112392d5a9db3a8d4208115 (patch)
tree6e1cc6a9a765d56269eab1c5df9affd46713483e
parent3be0a62ffe58f0753d190cbe22acbeb8b4926b85 (diff)
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: <[email protected]>
-rw-r--r--src/interfaces/libpq/win32.mak3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/libpq/win32.mak b/src/interfaces/libpq/win32.mak
index 88c36570352..268991e784c 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