1
0
mirror of https://github.com/systemd/systemd synced 2024-07-08 20:15:55 +00:00

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.
This commit is contained in:
Daan De Meyer 2024-05-27 16:26:25 +02:00
parent d821a1103f
commit 096f923f7a

View File

@ -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,
)