From: Peter Eisentraut Date: Thu, 9 Nov 2023 14:05:58 +0000 (+0100) Subject: meson: Fix doc installation path computation X-Git-Tag: REL_17_BETA1~1504 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=7b8399819b9b1a409b11ebfb4027aed56747f923;p=postgresql.git meson: Fix doc installation path computation This applies the logic from 8f6858064b (append "postgresql" to some installation paths if it does not already contain "pgsql" or "postgres") also to the doc installation directory. Reviewed-by: Tristan Partin Reviewed-by: Andres Freund Discussion: https://www.postgresql.org/message-id/b018b577-38a2-49c6-8727-adfb577de317@eisentraut.org --- diff --git a/meson.build b/meson.build index 88a9d9051fe..6c0faa9490f 100644 --- a/meson.build +++ b/meson.build @@ -511,7 +511,10 @@ endif dir_man = get_option('mandir') # FIXME: These used to be separately configurable - worth adding? -dir_doc = get_option('datadir') / 'doc' / 'postgresql' +dir_doc = get_option('datadir') / 'doc' +if not (dir_prefix_contains_pg or dir_doc.contains('pgsql') or dir_doc.contains('postgres')) + dir_doc = dir_doc / pkg +endif dir_doc_html = dir_doc / 'html' dir_locale = get_option('localedir')