]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
meson: Install missing manual pages
authorTobias Stoeckmann <tobias@stoeckmann.org>
Sun, 22 Mar 2026 15:45:00 +0000 (16:45 +0100)
committerTobias Stoeckmann <tobias@stoeckmann.org>
Sun, 22 Mar 2026 15:45:00 +0000 (16:45 +0100)
The manual pages for copyfilerange, mkfs.cramfs, and mkfs.minix are not
installed with meson, but with autotools.

Add them to meson files as well.

Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
disk-utils/meson.build
meson.build

index 2854ddb1fc12948dff49f754ac40c56528f494c2..e576e3012a8f6faaa79a44c0ea7ae70b4f3df082 100644 (file)
@@ -53,6 +53,7 @@ mkfs_cramfs_sources = files(
   'cramfs.h',
   'cramfs_common.c',
 )
+mkfs_cramfs_manadocs = files('mkfs.cramfs.8.adoc')
 
 fsck_cramfs_sources = files(
   'fsck.cramfs.c',
index ed6cfdc7f13a30cb0532ed1c26dfad79125f354f..802726d9d50571e99e82f77e612982120880fced 100644 (file)
@@ -2389,7 +2389,7 @@ exe3 = executable(
   build_by_default : opt)
 if opt and not is_disabler(exe)
   exes += [exe, exe2, exe3]
-  manadocs += fsck_minix_manadocs
+  manadocs += [mkfs_minix_manadocs, fsck_minix_manadocs]
   bashcompletions += ['mkfs.minix', 'fsck.minix']
 endif
 
@@ -2414,7 +2414,7 @@ exe2 = executable(
   build_by_default : opt)
 if opt and not is_disabler(exe)
   exes += [exe, exe2]
-  manadocs += fsck_cramfs_manadocs
+  manadocs += [mkfs_cramfs_manadocs, fsck_cramfs_manadocs]
   bashcompletions += ['mkfs.cramfs', 'fsck.cramfs']
 endif
 
@@ -3108,6 +3108,7 @@ exe = executable(
   build_by_default : opt)
 if opt and not is_disabler(exe)
   exes += exe
+  manadocs += copyfilerange_manadocs
   bashcompletions += ['copyfilerange']
 endif