Skip to content

Commit a237a07

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 d594e0d commit a237a07

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
@@ -225,9 +225,10 @@ if docs_dep.found()
225225

226226
install_doc_man = custom_target('install-man',
227227
output: 'install-man',
228+
input: man,
228229
command: [
229230
python, install_files, '--prefix', dir_prefix,
230-
'--install-dirs', dir_man, man],
231+
'--install-dirs', dir_man, '@INPUT@'],
231232
build_always_stale: true, build_by_default: false,
232233
)
233234
alias_target('install-doc-man', install_doc_man)

0 commit comments

Comments
 (0)