Remove extraneous leading whitespace in Windows build script.
authorTom Lane
Mon, 13 Jun 2016 15:50:27 +0000 (11:50 -0400)
committerTom Lane
Mon, 13 Jun 2016 15:50:34 +0000 (11:50 -0400)
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[email protected]>

src/interfaces/libpq/win32.mak

index 1b71ebd387072bb4f59aa27592fb9f7a8cbf54b5..45990b71890cb637c7e1f4696587369a921c7d35 100644 (file)
@@ -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