From: Daan De Meyer Date: Mon, 27 May 2024 14:26:25 +0000 (+0200) Subject: meson: Run genkey command with --force X-Git-Tag: v256-rc4~112 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=096f923f7a6bf045e08d16f357056262d97a2f00;p=thirdparty%2Fsystemd.git 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. --- diff --git a/meson.build b/meson.build index 738fb0b17f5..499f0f4d796 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, )