From f6c68cd6de7ed2b0456b0b002fa020c5fb6c8852 Mon Sep 17 00:00:00 2001 From: Stephan Lachnit Date: Wed, 8 Jul 2020 22:26:52 +0200 Subject: [PATCH] change location for the shipped default config Before it was installed to /etc, but according the daemon/gamemode-config.c line 381 the shipped config should be in /usr/share/gamemode Signed-off-by: Stephan Lachnit --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 1347159..a66601a 100644 --- a/meson.build +++ b/meson.build @@ -79,7 +79,7 @@ path_libdir = join_paths(path_prefix, get_option('libdir')) path_libexecdir = join_paths(path_prefix, get_option('libexecdir')) path_mandir = join_paths(path_prefix, get_option('mandir')) path_metainfo = join_paths(path_datadir, 'metainfo') -path_sysconfdir = join_paths(path_prefix, get_option('sysconfdir')) +path_sysconfdir = join_paths(path_datadir, 'gamemode') # Find systemd / elogind via pkgconfig sd_bus_provider = get_option('with-sd-bus-provider')