diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-29 16:48:41 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-29 19:14:23 +0000 |
commit | 1da1f501fcf9384e9cc15405b041f3dd9bb2a51a (patch) | |
tree | f4fd6d146b5d789a9cc19294c0300eecd8c6ca0b /meson.options | |
parent | 6646b803964cc60a25723ac92cf97d4e828a83c3 (diff) |
meson: fix state-dir default value
the autoconf build system defaults to /nix/var, not /nix/var/nix. the
latter is only used in libstore, so we'll move the extra segment there.
Change-Id: Idfbc988ee302355982abdcd51d6d7b5d5d661c0d
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 ef5a669dd..022727858 100644 --- a/meson.options +++ b/meson.options @@ -39,7 +39,7 @@ option('store-dir', type : 'string', value : '/nix/store', description : 'path of the Nix store', ) -option('state-dir', type : 'string', value : '/nix/var/nix', +option('state-dir', type : 'string', value : '/nix/var', description : 'path to store state in for Nix', ) |