summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorDaan De Meyer <daan.j.demeyer@gmail.com>2024-05-27 16:26:25 +0200
committerDaan De Meyer <daan.j.demeyer@gmail.com>2024-05-27 17:48:55 +0200
commit096f923f7a6bf045e08d16f357056262d97a2f00 (patch)
tree8e2e06491bb2c3e891532413814cccc71e6a6c59 /meson.build
parentMerge pull request #33038 from DaanDeMeyer/mkosi (diff)
downloadsystemd-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.build2
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,
)