From 27ff84ff42de060cee95369430ff8403f1c5a752 Mon Sep 17 00:00:00 2001 From: ajakk Date: Tue, 8 Dec 2020 01:11:59 -0600 Subject: [PATCH] Use docdir for all docs when building (#4269) --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 70847fc36..2c2d63e9f 100644 --- a/meson.build +++ b/meson.build @@ -643,7 +643,7 @@ if get_option('docs') '@OUTPUT@', ], install: true, - install_dir: join_paths(get_option('datadir'), 'doc', 'i3'), + install_dir: docdir, ) custom_target( @@ -656,7 +656,7 @@ if get_option('docs') '@OUTPUT@', ], install: true, - install_dir: join_paths(get_option('datadir'), 'doc', 'i3'), + install_dir: docdir, ) endif