diff options
author | Felix Fietkau <nbd@nbd.name> | 2017-03-22 13:49:05 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2017-04-11 19:33:00 +0200 |
commit | 0faf921a016fde64687e8fcdb8eace7854ce5876 (patch) | |
tree | 1b840f0581ae969ede2b32dcaff6371b6debafc2 /package/utils | |
parent | f2a365388250f62d86f5b1905316e3b3262b3874 (diff) | |
download | mtk-20170518-0faf921a016fde64687e8fcdb8eace7854ce5876.zip mtk-20170518-0faf921a016fde64687e8fcdb8eace7854ce5876.tar.gz mtk-20170518-0faf921a016fde64687e8fcdb8eace7854ce5876.tar.bz2 |
util-linux: unconditionally enable ncursesw support
The build dependency is unconditional, and some components might fail if
ncurses is not available
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'package/utils')
-rw-r--r-- | package/utils/util-linux/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/package/utils/util-linux/Makefile b/package/utils/util-linux/Makefile index f85f48e..a3c59c0 100644 --- a/package/utils/util-linux/Makefile +++ b/package/utils/util-linux/Makefile @@ -27,11 +27,6 @@ PKG_LICENSE_FILES:= COPYING \ PKG_BUILD_PARALLEL:=0 -PKG_CONFIG_DEPENDS:= \ - CONFIG_PACKAGE_cal \ - CONFIG_PACKAGE_cfdisk \ - CONFIG_PACKAGE_setterm - PKG_FIXUP:=autoreconf PKG_INSTALL:=1 @@ -441,7 +436,7 @@ CONFIGURE_ARGS += \ --without-udev \ --without-readline \ --disable-more \ - $(if $(CONFIG_PACKAGE_cal)$(CONFIG_PACKAGE_cfdisk)$(CONFIG_PACKAGE_setterm),--with-ncursesw,--without-ncurses) + --with-ncursesw TARGET_CFLAGS += $(FPIC) -std=gnu99 |