1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00

Merge pull request #228 from aelmahmoudy/meson-doc

[doc] use join_paths method & datadir config for generating default doc_dir
This commit is contained in:
rkd77 2023-05-02 17:57:16 +02:00 committed by GitHub
commit deccaca6dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ endif
doc_dir = get_option('docdir')
if doc_dir == ''
doc_dir = get_option('prefix') / 'share/doc/elinks'
doc_dir = join_paths(get_option('prefix'), get_option('datadir'), 'doc', 'elinks')
endif
if pod2html.found()