9c080f3407
The old ncurses trick is no longer needed for this version, in fact it's harmful. Switch to proper configure options. Also disable rpath hackery since it's not required and could be problematic. Fixes: http://autobuild.buildroot.net/results/411/411f6171e972eab4486143dedbfd078136886ab0/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
593 B
Makefile
21 lines
593 B
Makefile
################################################################################
|
|
#
|
|
# dialog
|
|
#
|
|
################################################################################
|
|
|
|
DIALOG_VERSION = 1.2-20140219
|
|
DIALOG_SOURCE = dialog-$(DIALOG_VERSION).tgz
|
|
DIALOG_SITE = ftp://invisible-island.net/dialog
|
|
DIALOG_CONF_OPT = --with-ncurses --with-curses-dir=$(STAGING_DIR)/usr \
|
|
--disable-rpath-hack
|
|
DIALOG_DEPENDENCIES = host-pkgconf ncurses
|
|
DIALOG_LICENSE = LGPLv2.1
|
|
DIALOG_LICENSE_FILES = COPYING
|
|
|
|
ifneq ($(BR2_ENABLE_LOCALE),y)
|
|
DIALOG_DEPENDENCIES += libiconv
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|