summaryrefslogtreecommitdiff
path: root/src/cryptenroll
diff options
context:
space:
mode:
authorJan Janssen <medhefgo@web.de>2023-01-24 15:14:15 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2023-01-24 22:04:03 +0100
commit4a7ee0a5217ab963c12704dbff428c43d9df81f0 (patch)
tree3ed6aa0e2bfbcb394f35da8fd8a1fa58b64fcd1f /src/cryptenroll
parentbe551917938391ba57fd570bd19be4d6c3c547bc (diff)
downloadsystemd-4a7ee0a5217ab963c12704dbff428c43d9df81f0.tar.gz
meson: Do not include headers in source lists
Meson+ninja+compiler do this for us and are better at it. https://mesonbuild.com/FAQ.html#do-i-need-to-add-my-headers-to-the-sources-list-like-in-autotools
Diffstat (limited to 'src/cryptenroll')
-rw-r--r--src/cryptenroll/meson.build9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/cryptenroll/meson.build b/src/cryptenroll/meson.build
index 0a795934e2..9080af0db9 100644
--- a/src/cryptenroll/meson.build
+++ b/src/cryptenroll/meson.build
@@ -1,19 +1,12 @@
# SPDX-License-Identifier: LGPL-2.1-or-later
systemd_cryptenroll_sources = files(
- 'cryptenroll-fido2.h',
'cryptenroll-list.c',
- 'cryptenroll-list.h',
'cryptenroll-password.c',
- 'cryptenroll-password.h',
- 'cryptenroll-pkcs11.h',
'cryptenroll-recovery.c',
- 'cryptenroll-recovery.h',
- 'cryptenroll-tpm2.h',
'cryptenroll-wipe.c',
- 'cryptenroll-wipe.h',
'cryptenroll.c',
- 'cryptenroll.h')
+)
if conf.get('HAVE_P11KIT') == 1 and conf.get('HAVE_OPENSSL') == 1
systemd_cryptenroll_sources += files('cryptenroll-pkcs11.c')