d3f24ac341
libedit is an optional dependency of dash since commit 651af57cf0
(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>
32 lines
886 B
Makefile
32 lines
886 B
Makefile
################################################################################
|
|
#
|
|
# dash
|
|
#
|
|
################################################################################
|
|
|
|
DASH_VERSION = 0.5.9.1
|
|
DASH_SITE = http://gondor.apana.org.au/~herbert/dash/files
|
|
DASH_LICENSE = BSD-3-Clause, GPL-2.0+ (mksignames.c)
|
|
DASH_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBEDIT),y)
|
|
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
|
|
mkdir -p $(TARGET_DIR)/etc/profile.d
|
|
echo 'set -E' > $(TARGET_DIR)/etc/profile.d/dash.sh
|
|
endef
|
|
DASH_POST_INSTALL_TARGET_HOOKS += DASH_INSTALL_PROFILE
|
|
else
|
|
DASH_CONF_OPTS += --without-libedit
|
|
endif
|
|
|
|
define DASH_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 $(@D)/src/dash $(TARGET_DIR)/bin/dash
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|