From d0ec32243482b673501009cad6bd93c60df14137 Mon Sep 17 00:00:00 2001 From: Pauli Virtanen Date: Fri, 24 Nov 2023 23:17:34 +0200 Subject: [PATCH] meson.build: set install tags on doc/man These are predefined names in meson --- doc/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/meson.build b/doc/meson.build index c2949d6b1..2deb4039f 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -210,6 +210,7 @@ html_target = custom_target('pipewire-docs', command: [ doxygen, doxyfile ], env: doxygen_env, install: true, + install_tag: 'doc', install_dir: docdir) @@ -230,6 +231,7 @@ foreach m : manpages depend_files : [ man_fixup ], capture : true, install : true, + install_tag: 'man', install_dir : get_option('mandir') / 'man' + section ) endforeach