From: Christian Hesse Date: Thu, 26 Nov 2020 20:29:30 +0000 (+0100) Subject: oom: fix oomd.conf install location X-Git-Tag: v247.1~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2bb703e440c844162cc258dfa0385c33d7bc32b3;p=thirdparty%2Fsystemd.git oom: fix oomd.conf install location The file is read in pkgsysconfdir, so install it there. --- diff --git a/src/oom/meson.build b/src/oom/meson.build index e966ad1dd89..1ea6766d1ad 100644 --- a/src/oom/meson.build +++ b/src/oom/meson.build @@ -31,6 +31,6 @@ if conf.get('ENABLE_OOMD') == 1 if install_sysconfdir install_data('oomd.conf', - install_dir : sysconfdir) + install_dir : pkgsysconfdir) endif endif