diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-05-27 16:26:25 +0200 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-05-27 17:48:55 +0200 |
commit | 096f923f7a6bf045e08d16f357056262d97a2f00 (patch) | |
tree | 8e2e06491bb2c3e891532413814cccc71e6a6c59 /meson.build | |
parent | Merge pull request #33038 from DaanDeMeyer/mkosi (diff) | |
download | systemd-096f923f7a6bf045e08d16f357056262d97a2f00.tar.xz systemd-096f923f7a6bf045e08d16f357056262d97a2f00.zip |
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.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
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, ) |