[Buildroot] [PATCH 1/1] package/ytree: fix static build with readline

Fabrice Fontaine fontaine.fabrice at gmail.com
Wed Sep 25 16:52:48 UTC 2019


Fixes:
 - http://autobuild.buildroot.org/results/b1a1392636467f8c07504fa6cfb17962764820ae

Signed-off-by: Fabrice Fontaine <fontaine.fabrice at gmail.com>
---
 package/ytree/ytree.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/ytree/ytree.mk b/package/ytree/ytree.mk
index 2d2a6946f7..824ace7155 100644
--- a/package/ytree/ytree.mk
+++ b/package/ytree/ytree.mk
@@ -14,9 +14,9 @@ YTREE_CFLAGS = -DCOLOR_SUPPORT $(TARGET_CFLAGS)
 YTREE_LDFLAGS = -lncurses $(TARGET_LDFLAGS)
 
 ifeq ($(BR2_PACKAGE_READLINE),y)
-YTREE_DEPENDENCIES += readline
+YTREE_DEPENDENCIES += host-pkgconf readline
 YTREE_CFLAGS += -DREADLINE_SUPPORT
-YTREE_LDFLAGS += -lreadline
+YTREE_LDFLAGS += `$(PKG_CONFIG_HOST_BINARY) --libs readline`
 endif
 
 define YTREE_BUILD_CMDS
-- 
2.23.0



More information about the buildroot mailing list