From 096f923f7a6bf045e08d16f357056262d97a2f00 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Mon, 27 May 2024 16:26:25 +0200 Subject: [PATCH] meson: Run genkey command with --force Sometimes meson decides to rerun the command even if the files already exist. Let's run with --force so we don't fail if that's the case. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 738fb0b17f..499f0f4d79 100644 --- a/meson.build +++ b/meson.build @@ -2622,7 +2622,7 @@ endforeach if mkosi.found() genkey = custom_target('genkey', output : ['mkosi.key', 'mkosi.crt'], - command : [mkosi, 'genkey'], + command : [mkosi, '--force', 'genkey'], depends : mkosi_depends, )