From: Jason Stephenson Date: Wed, 1 Mar 2017 21:56:12 +0000 (-0500) Subject: Fix installation of libdbdi-drivers with apt.postgresql.org. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=4f627f9e9cfcf1e7e7b68d2655c1398aedb3d18b;p=working%2FEvergreen.git Fix installation of libdbdi-drivers with apt.postgresql.org. Signed-off-by: Jason Stephenson --- diff --git a/Open-ILS/src/extras/install/Makefile.common b/Open-ILS/src/extras/install/Makefile.common index 3ad90cf82c..81dd53c7d1 100644 --- a/Open-ILS/src/extras/install/Makefile.common +++ b/Open-ILS/src/extras/install/Makefile.common @@ -24,8 +24,9 @@ install_libdbi: tar -zxf $(LIBDBI).tar.gz tar -zxf $(LIBDBI_DRIVERS).tar.gz cd $(LIBDBI) && ./configure --disable-docs && make all install - cd $(LIBDBI_DRIVERS) && ./configure \ - --disable-docs --with-pgsql --enable-libdbi && make all install + cd $(LIBDBI_DRIVERS) && ./configure --disable-docs --enable-libdbi \ + --with-pgsql --with-pgsql-incdir=$$(pg_config --includedir) \ + --with-pgsql-libdir=$$(pg_config --libdir) && make all install # NOTE: Deprecate me with wheezy install_nodejs_from_source: