diff options
author | Andres Freund <andres@anarazel.de> | 2023-11-03 11:46:52 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2023-11-03 15:22:14 -0700 |
commit | f646ac6725672896d424e0ac46b3ba77a4063264 (patch) | |
tree | dfdf9715b97538ef5d61d9df08c9cce35d9e996e | |
parent | 1e774846b870a858f8eb88b3f512562009177f45 (diff) | |
download | postgresql-f646ac6725672896d424e0ac46b3ba77a4063264.tar.gz postgresql-f646ac6725672896d424e0ac46b3ba77a4063264.zip |
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 <myon@debian.org>
Discussion: https://postgr.es/m/ZUU5pRQO6ZUeBsi6@msg.df7cb.de
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 c6d77b5a150..4fcce2f6546 100644 --- a/doc/src/sgml/meson.build +++ b/doc/src/sgml/meson.build @@ -213,9 +213,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) |