diff options
author | Marta Rybczynska <rybczynska@gmail.com> | 2024-04-24 18:20:04 +0200 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2024-05-08 22:03:13 -0400 |
commit | 3a8837961075a6ddd60aa22852cdf6e625dfc426 (patch) | |
tree | fa6b738b86e02d4529f679f6b01753c4ff0b9755 | |
parent | 7346f5996c930d699f646b05a93b81d1a85f01b4 (diff) | |
download | meta-security-3a8837961075a6ddd60aa22852cdf6e625dfc426.tar.gz |
packagegroup-core-security: update libseccomp dependencies
libseccomp requires DISTRO_FEATURE seccomp enabled. This one
is automatically removed for riscv, so we do not need to add
an additional condition.
This change is necessary for cve-check on world with meta-security
Signed-off-by: Marta Rybczynska <marta.rybczynska@syslinbit.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | recipes-core/packagegroup/packagegroup-core-security.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-core/packagegroup/packagegroup-core-security.bb b/recipes-core/packagegroup/packagegroup-core-security.bb index 3ef77e5..9eab063 100644 --- a/recipes-core/packagegroup/packagegroup-core-security.bb +++ b/recipes-core/packagegroup/packagegroup-core-security.bb | |||
@@ -40,7 +40,7 @@ RDEPENDS:packagegroup-security-utils = "\ | |||
40 | pinentry \ | 40 | pinentry \ |
41 | softhsm \ | 41 | softhsm \ |
42 | sshguard \ | 42 | sshguard \ |
43 | ${@bb.utils.contains_any("TUNE_FEATURES", "riscv32 ", "", " libseccomp",d)} \ | 43 | ${@bb.utils.contains("DISTRO_FEATURES", "seccomp ", "libseccomp", "",d)} \ |
44 | ${@bb.utils.contains("DISTRO_FEATURES", "pam", "google-authenticator-libpam", "",d)} \ | 44 | ${@bb.utils.contains("DISTRO_FEATURES", "pam", "google-authenticator-libpam", "",d)} \ |
45 | ${@bb.utils.contains("DISTRO_FEATURES", "pax", "pax-utils packctl", "",d)} \ | 45 | ${@bb.utils.contains("DISTRO_FEATURES", "pax", "pax-utils packctl", "",d)} \ |
46 | " | 46 | " |