From 3b82cf5419e4e952504a77bad5ad89ab2983fd71 Mon Sep 17 00:00:00 2001 From: Michael Braun Date: Wed, 22 Mar 2017 12:46:42 +0100 Subject: [PATCH] postgresql: InstallDev pkg-config files for libpq Signed-off-by: Michael Braun --- libs/postgresql/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/postgresql/Makefile b/libs/postgresql/Makefile index 05071468d..181b0a600 100644 --- a/libs/postgresql/Makefile +++ b/libs/postgresql/Makefile @@ -222,6 +222,8 @@ define Build/InstallDev $(CP) $(PKG_INSTALL_DIR)/usr/include/postgresql $(1)/usr/include/ $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpq.{a,so*} $(1)/usr/lib/ + $(INSTALL_DIR) $(1)/usr/lib/pkgconfig + $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libpq.pc $(1)/usr/lib/pkgconfig/ endef $(eval $(call HostBuild))