diff options
author | Armin Kuster <akuster808@gmail.com> | 2020-02-01 09:52:51 -0800 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2020-02-01 09:52:51 -0800 |
commit | 84fb57b53f9b200c006a464d659441f66096abff (patch) | |
tree | c3bde6fb5e254976edd43777fcdb91df5b9a714a | |
parent | 037adba72ec091a94fc4ba3e9334dd341aab97f2 (diff) | |
download | meta-security-84fb57b53f9b200c006a464d659441f66096abff.tar.gz meta-security-84fb57b53f9b200c006a464d659441f66096abff.tar.bz2 meta-security-84fb57b53f9b200c006a464d659441f66096abff.zip |
swtpm: fix configure error
checking for whether to build with seccomp profile... configure: error: "Is libseccomp-devel installed? -- could not get cflags for libseccomp"
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-tpm/recipes-tpm/swtpm/swtpm_0.2.0.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-tpm/recipes-tpm/swtpm/swtpm_0.2.0.bb b/meta-tpm/recipes-tpm/swtpm/swtpm_0.2.0.bb index f3a53dd..35c77c8 100644 --- a/meta-tpm/recipes-tpm/swtpm/swtpm_0.2.0.bb +++ b/meta-tpm/recipes-tpm/swtpm/swtpm_0.2.0.bb @@ -31,6 +31,7 @@ PACKAGECONFIG[openssl] = "--with-openssl, --without-openssl, openssl" PACKAGECONFIG[gnutls] = "--with-gnutls, --without-gnutls, gnutls" PACKAGECONFIG[selinux] = "--with-selinux, --without-selinux, libselinux" PACKAGECONFIG[cuse] = "--with-cuse, --without-cuse, fuse" +PACKAGECONFIG[seccomp] = "--with-seccomp, --without-seccomp, libseccomp" EXTRA_OECONF += "--with-tss-user=${TSS_USER} --with-tss-group=${TSS_GROUP}" |