summaryrefslogtreecommitdiffstats
path: root/package/dash
diff options
context:
space:
mode:
authorBaruch Siach <baruch@tkos.co.il>2018-03-02 07:22:36 +0200
committerPeter Korsgaard <peter@korsgaard.com>2018-03-02 07:59:27 +0100
commitd3f24ac341d07f62f51d9951acdb7eac896d57a2 (patch)
tree14e54a8d2b9bfed63a91710e0c1dc294a15bdfd4 /package/dash
parentee25f5c998d13e8dc2022783e4c1b5dd328985d5 (diff)
downloadbuildroot-d3f24ac341d07f62f51d9951acdb7eac896d57a2.tar.gz
buildroot-d3f24ac341d07f62f51d9951acdb7eac896d57a2.zip
dash: fix static link with libedit
libedit is an optional dependency of dash since commit 651af57cf011e (dash: enable line editting if libedit is selected). Unfortunately, the dash build system does not take into account the ncurses dependency of libedit. Use pkgconf to get that right. Fixes: http://autobuild.buildroot.net/results/801/801e8bc06277978556a301ddf54f609169de37bb/ http://autobuild.buildroot.net/results/123/12367267735b9165afef77289460c247aaad494a/ http://autobuild.buildroot.net/results/aa7/aa7cc7315d778c15c5165ca6423257a84b957482/ Cc: Carlos Santos <casantos@datacom.ind.br> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/dash')
-rw-r--r--package/dash/dash.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/dash/dash.mk b/package/dash/dash.mk
index 87c9cc9f8b..2ee292b8d3 100644
--- a/package/dash/dash.mk
+++ b/package/dash/dash.mk
@@ -10,8 +10,9 @@ DASH_LICENSE = BSD-3-Clause, GPL-2.0+ (mksignames.c)
DASH_LICENSE_FILES = COPYING
ifeq ($(BR2_PACKAGE_LIBEDIT),y)
-DASH_DEPENDENCIES += libedit
+DASH_DEPENDENCIES += libedit host-pkgconf
DASH_CONF_OPTS += --with-libedit
+DASH_CONF_ENV += LIBS=`pkg-config --libs libedit`
# Enable line editing, Emacs style
define DASH_INSTALL_PROFILE
OpenPOWER on IntegriCloud