diff options
author | Andres Freund | 2023-11-03 18:46:52 +0000 |
---|---|---|
committer | Andres Freund | 2023-11-03 21:48:52 +0000 |
commit | a237a07d5351d7bb0afc6e0c41410d52915e47c8 (patch) | |
tree | a8af44b9eb416425e338cc210e0264018a139f91 | |
parent | d594e0daf79f9e55d5308074d1ef801e9da285ac (diff) |
meson: docs: Install all manpages, not just ones in man1
In f13eb16485f 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 <[email protected]>
Discussion: https://postgr.es/m/[email protected]
Backpatch: 16-, where the meson build was introduced
-rw-r--r-- | doc/src/sgml/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/meson.build b/doc/src/sgml/meson.build index 16c1aa980c..90e2c062fa 100644 --- a/doc/src/sgml/meson.build +++ b/doc/src/sgml/meson.build @@ -225,9 +225,10 @@ if docs_dep.found() install_doc_man = custom_target('install-man', output: 'install-man', + input: man, command: [ python, install_files, '--prefix', dir_prefix, - '--install-dirs', dir_man, man], + '--install-dirs', dir_man, '@INPUT@'], build_always_stale: true, build_by_default: false, ) alias_target('install-doc-man', install_doc_man) |