meson: correctly set NIX_CONF_DIR to $sysconfdir/nix
Instead of $sysconfdir. Fixes #231, but there's more to do in following commits to make Meson-built Lix actually look in /etc/nix. Change-Id: Ia8d627070f405843add46e05cff5134b76b8eb48
This commit is contained in:
parent
7e139c52dd
commit
2a98fe28cb
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ cpp_str_defines = {
|
||||||
'NIX_DATA_DIR': datadir,
|
'NIX_DATA_DIR': datadir,
|
||||||
'NIX_STATE_DIR': state_dir / 'nix',
|
'NIX_STATE_DIR': state_dir / 'nix',
|
||||||
'NIX_LOG_DIR': log_dir,
|
'NIX_LOG_DIR': log_dir,
|
||||||
'NIX_CONF_DIR': sysconfdir,
|
'NIX_CONF_DIR': sysconfdir / 'nix',
|
||||||
'NIX_BIN_DIR': bindir,
|
'NIX_BIN_DIR': bindir,
|
||||||
'NIX_MAN_DIR': mandir,
|
'NIX_MAN_DIR': mandir,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue