summaryrefslogtreecommitdiff
path: root/doc/meson.build
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2020-09-16 02:04:11 -0500
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2020-09-16 02:04:11 -0500
commit1237f70653f4cb95b17e8104a2ade2966f7c45b2 (patch)
tree30ae2602822ba696032624a2b43ec4afd5ccef64 /doc/meson.build
parentea31b557a09b647019e4fa26c48289e33577ae20 (diff)
downloadpidgin-1237f70653f4cb95b17e8104a2ade2966f7c45b2.tar.gz
Switch join_paths and + to /.
Testing Done: Ran `ninja install`, though didn't actually check the results. Reviewed at https://reviews.imfreedom.org/r/121/
Diffstat (limited to 'doc/meson.build')
-rw-r--r--doc/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/meson.build b/doc/meson.build
index 592fe8e924..41756e6d97 100644
--- a/doc/meson.build
+++ b/doc/meson.build
@@ -8,7 +8,7 @@ if ENABLE_GTK
output : 'pidgin3.1',
configuration : man_conf,
install : true,
- install_dir : get_option('mandir') + '/man1')
+ install_dir : get_option('mandir') / 'man1')
endif
if enable_consoleui
@@ -17,5 +17,5 @@ if enable_consoleui
output : 'finch3.1',
configuration : man_conf,
install : true,
- install_dir : get_option('mandir') + '/man1')
+ install_dir : get_option('mandir') / 'man1')
endif