Skip to content

Commit f646ac6

Browse files
committed
meson: docs: Install all manpages, not just ones in man1
In f13eb16 I made a mistake leading to only man1 being installed. I will report a bug suggesting that meson warn about mistakes of this sort. Reported-by: Christoph Berg <myon@debian.org> Discussion: https://postgr.es/m/ZUU5pRQO6ZUeBsi6@msg.df7cb.de Backpatch: 16-, where the meson build was introduced
1 parent 1e77484 commit f646ac6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

doc/src/sgml/meson.build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,10 @@ if docs_dep.found()
213213

214214
install_doc_man = custom_target('install-man',
215215
output: 'install-man',
216+
input: man,
216217
command: [
217218
python, install_files, '--prefix', dir_prefix,
218-
'--install-dirs', dir_man, man],
219+
'--install-dirs', dir_man, '@INPUT@'],
219220
build_always_stale: true, build_by_default: false,
220221
)
221222
alias_target('install-doc-man', install_doc_man)

0 commit comments

Comments
 (0)