diff options
author | eldritch horrors <pennae@lix.systems> | 2024-04-11 00:14:02 +0200 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-04-11 13:36:04 +0000 |
commit | cd79b8d65ac0c46fd28fcba8a0900d7982533ef0 (patch) | |
tree | 3118eae0e2014e0052ac2d3939f3deff5cec684e /meson.options | |
parent | adab839c98b8a03649d66323c89aa886e653050a (diff) |
meson: fix log-dir
the make build system sets this with an extra /nix segment.
Change-Id: Iedf464843196faeae5b59698837faca3a4f23586
Diffstat (limited to 'meson.options')
-rw-r--r-- | meson.options | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.options b/meson.options index c71ec18ae..3960f8132 100644 --- a/meson.options +++ b/meson.options @@ -43,7 +43,7 @@ option('state-dir', type : 'string', value : '/nix/var', description : 'path to store state in for Nix', ) -option('log-dir', type : 'string', value : '/nix/var/log', +option('log-dir', type : 'string', value : '/nix/var/log/nix', description : 'path to store logs in for Nix', ) |