From: Thomas Weißschuh Date: Mon, 14 Apr 2025 21:19:06 +0000 (+0200) Subject: meson: remove tinfo dependency from 'more' X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=363e48da01956321fb9337c59d78865c97c711a2;p=thirdparty%2Futil-linux.git meson: remove tinfo dependency from 'more' The more utility does not need libtinfo and it is not specified in autotools either. Signed-off-by: Thomas Weißschuh --- diff --git a/meson.build b/meson.build index ec1353305..928eda2da 100644 --- a/meson.build +++ b/meson.build @@ -1400,8 +1400,7 @@ exe = executable( more_sources, link_with : [lib_common], include_directories : includes, - dependencies : [lib_tinfo, - curses_libs, + dependencies : [curses_libs, lib_magic], install : opt, build_by_default : opt) @@ -1411,8 +1410,7 @@ exe2 = executable( link_with : [lib_common], include_directories : includes, c_args : '-DTEST_PROGRAM', - dependencies : [lib_tinfo, - curses_libs, + dependencies : [curses_libs, lib_magic], build_by_default : opt and program_tests) exes += exe