diff options
author | Christian Hesse <mail@eworm.de> | 2020-11-26 21:29:30 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-11-27 01:03:18 +0100 |
commit | 2bb703e440c844162cc258dfa0385c33d7bc32b3 (patch) | |
tree | 00e1aaefa089faaf60c3d75a72c7cf4ebac9b63a | |
parent | home: fix homed.conf install location (diff) | |
download | systemd-2bb703e440c844162cc258dfa0385c33d7bc32b3.tar.xz systemd-2bb703e440c844162cc258dfa0385c33d7bc32b3.zip |
oom: fix oomd.conf install location
The file is read in pkgsysconfdir, so install it there.
-rw-r--r-- | src/oom/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/oom/meson.build b/src/oom/meson.build index e966ad1dd8..1ea6766d1a 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 |