summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorDaan De Meyer <daan.j.demeyer@gmail.com>2023-06-02 15:40:35 +0200
committerDaan De Meyer <daan.j.demeyer@gmail.com>2023-06-02 15:43:28 +0200
commitd7a5730848719fafffae07637165e33598700713 (patch)
treec9ce0216ad89dd3d52205276711961790a576372 /meson.build
parentmkosi: Update to latest (diff)
downloadsystemd-d7a5730848719fafffae07637165e33598700713.tar.xz
systemd-d7a5730848719fafffae07637165e33598700713.zip
meson: Add missing tss2-tcti-device dependency
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 314cbcea89..51a5fc82e3 100644
--- a/meson.build
+++ b/meson.build
@@ -1527,7 +1527,7 @@ conf.set10('HAVE_LIBFIDO2', have)
want_tpm2 = get_option('tpm2')
if want_tpm2 != 'false' and not skip_deps
- tpm2 = dependency('tss2-esys tss2-rc tss2-mu',
+ tpm2 = dependency('tss2-esys tss2-rc tss2-mu tss2-tcti-device',
required : want_tpm2 == 'true')
have = tpm2.found()
have_esys3 = tpm2.version().version_compare('>= 3.0.0')