summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-04-02 15:27:10 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-04-02 16:00:47 -0700
commit465aecdce47040a211fddc29186a4b1aa2ad5648 (patch)
tree272db9bab4601a90d90178950a0f0fa52c784aab
parent5cf85c28ad5f0811d53e5d70eac384dfe8e86cd6 (diff)
meson: install man page in mandir/man1/, not mandir/1/
But don't install it by default, since neither meson nor autotools installs the scanpci program by default Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--man/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/man/meson.build b/man/meson.build
index 71a6a6c..aa4e236 100644
--- a/man/meson.build
+++ b/man/meson.build
@@ -26,7 +26,7 @@ custom_target(
find_program('sed'), '-e', 's/__xorgversion__/X Version 11/', '@INPUT@',
],
capture : true,
- install : true,
- install_dir : join_paths(get_option('prefix'), get_option('mandir'), '1'),
+ install : false,
+ install_dir : join_paths(get_option('prefix'), get_option('mandir'), 'man1'),
)