diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2012-02-02 21:34:38 +0100 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2012-02-02 21:34:38 +0100 |
commit | 88b58e961324ff69feaec24fdc3fd03cd6f684ca (patch) | |
tree | c438616d8eb5450cde52a8312074c46553353739 | |
parent | c39cec2f91205529cef237e6bae500bbaf169517 (diff) |
pgsql-sdbc: move libpq link *first* in libs; hopefully will fix tinderboxes
-rw-r--r-- | connectivity/source/drivers/postgresql/makefile.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/drivers/postgresql/makefile.mk b/connectivity/source/drivers/postgresql/makefile.mk index d4df775545a0..acf8b8c87ac1 100644 --- a/connectivity/source/drivers/postgresql/makefile.mk +++ b/connectivity/source/drivers/postgresql/makefile.mk @@ -155,13 +155,13 @@ LIB2OBJFILES= \ SHL2STDLIBS= \ + $(POSTGRESQL_LIB) \ + $(LIBPQ_LINK) \ + $(LIBPQ_DEP_LIBS) \ $(CPPULIB) \ $(CPPUHELPERLIB) \ $(SALLIB) \ - $(SALHELPERLIB) \ - $(POSTGRESQL_LIB) \ - $(LIBPQ_LINK) \ - $(LIBPQ_DEP_LIBS) + $(SALHELPERLIB) SHL2LIBS= $(LIB2TARGET) SHL2DEF= $(MISC)/$(SHL2TARGET).def |