]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
meson: add blkpr
authorThomas Weißschuh <thomas@t-8ch.de>
Sun, 22 Jan 2023 14:27:12 +0000 (14:27 +0000)
committerKarel Zak <kzak@redhat.com>
Mon, 23 Jan 2023 12:52:00 +0000 (13:52 +0100)
meson.build
sys-utils/meson.build

index 32b89d6a73fedc4b46a3c53c9a14e1508c425ef0..50648935af41705beee766036ea74dbf6e66f91c 100644 (file)
@@ -1435,6 +1435,16 @@ exes += exe
 manadocs += ['sys-utils/blkzone.8.adoc']
 bashcompletions += ['blkzone']
 
+exe = executable(
+  'blkpr',
+  blkpr_sources,
+  include_directories : includes,
+  link_with : [lib_common],
+  install_dir : sbindir,
+  install : true)
+exes += exe
+manadocs += ['sys-utils/blkpr.8.adoc']
+
 exe = executable(
   'ldattach',
   ldattach_sources,
index 4b6cb7a1c898f26a53ec55c6ec2733d018da2389..98cc3ae0acdbbf60ac362d5b2fabc85e38960740 100644 (file)
@@ -74,6 +74,10 @@ blkzone_sources = files(
   'blkzone.c',
 )
 
+blkpr_sources = files(
+  'blkpr.c',
+)
+
 ldattach_sources = files(
   'ldattach.c',
 )