[PATCH] erofs-utils: manpage: fix installation of `erofsfuse.1`

Gao Xiang xiang at kernel.org
Thu Feb 19 00:13:51 AEDT 2026


`erofsfuse.1` may be missing if `man_MANS` is assigned twice.

Signed-off-by: Gao Xiang <xiang at kernel.org>
---
 man/Makefile.am | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/man/Makefile.am b/man/Makefile.am
index c951681..b9b5989 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -3,10 +3,12 @@
 dist_man_MANS = mkfs.erofs.1 dump.erofs.1 fsck.erofs.1
 
 EXTRA_DIST = erofsfuse.1 mount.erofs.8
+
+man_MANS =
 if ENABLE_FUSE
-man_MANS = erofsfuse.1
+man_MANS += erofsfuse.1
 endif
 
 if OS_LINUX
-man_MANS = mount.erofs.8
+man_MANS += mount.erofs.8
 endif
-- 
2.47.3



More information about the Linux-erofs mailing list