diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-12-12 14:19:07 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-12-12 14:20:14 +0100 |
commit | 8bfe0a7df124edd4952e4cfa379e25bd019e79cb (patch) | |
tree | 7d7bc0fca8db1a805e8976d47c4d003a49fd72aa | |
parent | cf5d0e20f2ba5a71f9ca2ed78a1b24841c97bb06 (diff) |
Fix a thinko in makefile.mk
-rw-r--r-- | postgresql/makefile.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/postgresql/makefile.mk b/postgresql/makefile.mk index 6b687b40d13f..6f2931e66d24 100644 --- a/postgresql/makefile.mk +++ b/postgresql/makefile.mk @@ -60,10 +60,9 @@ BUILD_DIR=src/interfaces/libpq CONFIGURE_ACTION = CPPFLAGS=-I$(SOLARVER)$/$(INPATH)$/inc ./configure --without-readline --disable-shared --with-openssl .IF "$(WITH_LDAP)" == "YES" CONFIGURE_ACTION += --with-ldap -.ENDIF .IF "$(WITH_OPENLDAP)" != "YES" CONFIGURE_ACTION += --with-mozldap -.ELSE +.ENDIF .ENDIF BUILD_ACTION = make -j$(GMAKE_MODULE_PARALLELISM) all-static-lib .ENDIF |