diff options
author | 2019-05-19 17:08:15 +0300 | |
---|---|---|
committer | 2019-05-19 17:08:15 +0300 | |
commit | 0389fdc7507238221a9747c5fcbca26952e3229c (patch) | |
tree | c33799e4d15d025e87787a7cedcc5001b05478f9 /meson.build | |
parent | a40cd32e24e18857ab937e1142fe4146334b455c (diff) | |
download | usurpation-0389fdc7507238221a9747c5fcbca26952e3229c.tar.gz usurpation-0389fdc7507238221a9747c5fcbca26952e3229c.tar.bz2 usurpation-0389fdc7507238221a9747c5fcbca26952e3229c.zip |
daemon: read the system-wide config file now.
This usually, but now always means "/etc/usurpation.conf"
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 4a780c8..636aa4b 100644 --- a/meson.build +++ b/meson.build @@ -22,7 +22,7 @@ elif get_option('buildtype') == 'debugoptimized' verb = '3' endif -daemon = executable(progname, d_sources, version, include_directories : inc, install : true, dependencies : deps, extra_files : d_conf, c_args : '-DUSURP_VERBOSITY=' + verb) +daemon = executable(progname, d_sources, version, include_directories : inc, install : true, dependencies : deps, extra_files : d_conf, c_args : ['-DUSURP_VERBOSITY=' + verb, '-DSYSCONFDIR=' + get_option('sysconfdir')]) #install_data(extra, install_dir : resource_dir) install_data(d_conf, install_dir : get_option('sysconfdir')) |