]> git.ipfire.org Git - thirdparty/util-linux.git/blobdiff - meson.build
waitpid: add new command
[thirdparty/util-linux.git] / meson.build
index c1ff7605d1027ae4b707b615790128e97ecd849e..e30064e67b28b59d2d0ff18079b33c23bea48acc 100644 (file)
@@ -2802,6 +2802,19 @@ if not is_disabler(exe)
   bashcompletions += ['fadvise']
 endif
 
+exe = executable(
+  'waitpid',
+  waitpid_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/waitpid.1.adoc']
+  bashcompletions += ['waitpid']
+endif
+
 ############################################################
 
 opt = not get_option('build-schedutils').disabled()