Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit7b83998

Browse files
committed
meson: Fix doc installation path computation
This applies the logic from8f68580 (append "postgresql" to someinstallation paths if it does not already contain "pgsql" or"postgres") also to the doc installation directory.Reviewed-by: Tristan Partin <tristan@neon.tech>Reviewed-by: Andres Freund <andres@anarazel.de>Discussion:https://www.postgresql.org/message-id/b018b577-38a2-49c6-8727-adfb577de317@eisentraut.org
1 parentb44a170 commit7b83998

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

‎meson.build

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,10 @@ endif
511511
dir_man=get_option('mandir')
512512

513513
# FIXME: These used to be separately configurable - worth adding?
514-
dir_doc=get_option('datadir')/'doc'/'postgresql'
514+
dir_doc=get_option('datadir')/'doc'
515+
ifnot (dir_prefix_contains_pgor dir_doc.contains('pgsql')or dir_doc.contains('postgres'))
516+
dir_doc= dir_doc/ pkg
517+
endif
515518
dir_doc_html= dir_doc/'html'
516519

517520
dir_locale=get_option('localedir')

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp