From 4f627f9e9cfcf1e7e7b68d2655c1398aedb3d18b Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Wed, 1 Mar 2017 16:56:12 -0500 Subject: [PATCH] Fix installation of libdbdi-drivers with apt.postgresql.org. Signed-off-by: Jason Stephenson --- Open-ILS/src/extras/install/Makefile.common | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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: -- 2.11.0