aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2017-10-20 09:20:39 +0100
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-10-20 09:20:39 +0100
commit16422eb03c3905fa3aaaf25b2b460f54f2501c8d (patch)
treed7c56bf335d7915b709b835337df074fc9762586
parent945ce7a9d4d3888c4dc6d9b45a213af6c3716a8b (diff)
Don't install manpages under *BSD
Were not installing the corresponding binaries either, since those are provided by the BSD base system.
-rw-r--r--doc/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/meson.build b/doc/meson.build
index 3a0dd44..d95a344 100644
--- a/doc/meson.build
+++ b/doc/meson.build
@@ -1,2 +1,4 @@
-install_man('fusermount3.1', 'mount.fuse.8')
+if not platform.endswith('bsd')
+ install_man('fusermount3.1', 'mount.fuse.8')
+endif