summaryrefslogtreecommitdiffstats
path: root/package/util-linux
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2010-08-10 19:15:26 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2010-08-10 19:22:09 +0200
commite0f441a234dc2e0e8b49272ab608da2e7c69f2a7 (patch)
treed39b70d164dbd1bee62a0bf964a824405f28d2e5 /package/util-linux
parent55f70939b839cd5ad826ea01fcb6d363d63ee15d (diff)
downloadbuildroot-novena-e0f441a234dc2e0e8b49272ab608da2e7c69f2a7.tar.gz
buildroot-novena-e0f441a234dc2e0e8b49272ab608da2e7c69f2a7.zip
Add dependency from util-linux on ncurses
util-linux can build without ncurses, but when ncurses is available, additional features can be built (such as the more command). Therefore, in util-linux.mk, when ncurses is available, mark it as a dependency. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/util-linux')
-rw-r--r--package/util-linux/util-linux.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/package/util-linux/util-linux.mk b/package/util-linux/util-linux.mk
index f330447fb..445b4d1c7 100644
--- a/package/util-linux/util-linux.mk
+++ b/package/util-linux/util-linux.mk
@@ -23,6 +23,10 @@ UTIL-LINUX_DEPENDENCIES += gettext libintl
UTIL-LINUX_MAKE_OPT = LIBS=-lintl
endif
+ifeq ($(BR2_PACKAGE_NCURSES),y)
+UTIL-LINUX_DEPENDENCIES += ncurses
+endif
+
$(DL_DIR)/$(UTIL-LINUX_SOURCE):
$(call DOWNLOAD,$(UTIL-LINUX_SITE),$(UTIL-LINUX_SOURCE))