From cd79b8d65ac0c46fd28fcba8a0900d7982533ef0 Mon Sep 17 00:00:00 2001 From: eldritch horrors Date: Thu, 11 Apr 2024 00:14:02 +0200 Subject: [PATCH] meson: fix log-dir the make build system sets this with an extra /nix segment. Change-Id: Iedf464843196faeae5b59698837faca3a4f23586 --- meson.options | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', )