commit 6942f5b6845b2cc572ec378365771a34caf50ba1
parent 462e15d9a506f2265d4b20bfbc1c245be5f82a17
Author: sghctoma <sghctoma@gmail.com>
Date: Thu, 30 Aug 2018 09:44:24 +0200
Fix SYSCONFDIR to include "prefix"
SYSCONFDIR is used to determine the path of the default configuration
file. 'sysconfdir' is set to 'prefix/sysconfdir' later (on line 139),
so configuration files are installed under 'prefix', but SYSCONFDIR did
not reflect it.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meson.build b/meson.build
@@ -104,7 +104,7 @@ if scdoc.found()
endforeach
endif
-add_project_arguments('-DSYSCONFDIR="/@0@"'.format(sysconfdir), language : 'c')
+add_project_arguments('-DSYSCONFDIR="/@0@/@1@"'.format(prefix, sysconfdir), language : 'c')
version = get_option('sway_version')
if version != ''