Skip to content

Commit

Permalink
meson: Fix use of the nix state dir
Browse files Browse the repository at this point in the history
Thanks @tetdim for finding
  • Loading branch information
Ericson2314 committed Sep 25, 2019
1 parent c190b9b commit b71aa9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstore/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ libstore = library(
'-DNIX_PREFIX="@0@"'.format(get_option('prefix')),
'-DNIX_STORE_DIR="@0@"'.format(storedir),
'-DNIX_DATA_DIR="@0@"'.format(get_option('datadir')),
'-DNIX_STATE_DIR="@0@/nix"'.format(get_option('localstatedir')),
'-DNIX_LOG_DIR="@0@/log/nix"'.format(get_option('localstatedir')),
'-DNIX_STATE_DIR="@0@/nix"'.format(nixstatedir),
'-DNIX_LOG_DIR="@0@/log/nix"'.format(nixstatedir),
'-DNIX_CONF_DIR="@0@/nix"'.format(get_option('sysconfdir')),
'-DNIX_LIBEXEC_DIR="@0@"'.format(get_option('libexecdir')),
'-DNIX_BIN_DIR="@0@"'.format(get_option('bindir')),
Expand Down

0 comments on commit b71aa9d

Please sign in to comment.