From: Masatake YAMATO Date: Sun, 30 Oct 2022 01:33:57 +0000 (+0900) Subject: meson: build fadvise X-Git-Tag: v2.39-rc1~450^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=64bc8ab57692ce95e8fb37dcb89b4fd4edf36cdc;p=thirdparty%2Futil-linux.git meson: build fadvise Reported-by: Rosen Penev Signed-off-by: Masatake YAMATO --- diff --git a/meson.build b/meson.build index ceb6b60a5e..646386d0b1 100644 --- a/meson.build +++ b/meson.build @@ -2736,6 +2736,19 @@ if not is_disabler(exe) exes += exe endif +exe = executable( + 'fadvise', + fadvise_sources, + include_directories : includes, + link_with : [lib_common], + install_dir : usrbin_exec_dir, + install : true) +if not is_disabler(exe) + exes += exe + manadocs += ['misc-utils/fadvise.1.adoc'] + bashcompletions += ['fadvise'] +endif + ############################################################ opt = not get_option('build-schedutils').disabled()