From 2d1694ff7cd9e4517483f1012d9deed1b2b710c4 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Thu, 7 Mar 2019 13:06:26 +0100 Subject: [PATCH] postgresql: add HOST_BUILD_DEPENDS:=zlib/host spotted on buildbot trying postgresql/host build: configure: error: zlib library not found Fix this by adding zlib/host to HOST_BUILD_DEPENDS. Signed-off-by: Daniel Golle --- libs/postgresql/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/postgresql/Makefile b/libs/postgresql/Makefile index 9610017ea..14be65583 100644 --- a/libs/postgresql/Makefile +++ b/libs/postgresql/Makefile @@ -21,7 +21,8 @@ PKG_HASH:=2e8c8446ba94767bda8a26cf5a2152bf0ae68a86aaebf894132a763084579d84 PKG_USE_MIPS16:=0 PKG_FIXUP:=autoreconf PKG_MACRO_PATHS:=config -PKG_BUILD_DEPENDS += readline/host postgresql/host +PKG_BUILD_DEPENDS:=readline/host postgresql/host +HOST_BUILD_DEPENDS:=zlib/host PKG_INSTALL:=1 include $(INCLUDE_DIR)/host-build.mk