diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-08-10 19:15:26 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-08-10 19:22:09 +0200 |
commit | e0f441a234dc2e0e8b49272ab608da2e7c69f2a7 (patch) | |
tree | d39b70d164dbd1bee62a0bf964a824405f28d2e5 /package | |
parent | 55f70939b839cd5ad826ea01fcb6d363d63ee15d (diff) | |
download | buildroot-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')
-rw-r--r-- | package/util-linux/util-linux.mk | 4 |
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)) |