summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2021-04-23 10:32:24 -0400
committerBruce Ashfield <bruce.ashfield@gmail.com>2021-04-26 11:17:27 -0400
commit144d1ae8973e8c67709d7b544dc53b80bf924754 (patch)
treed2b16d87e305fecf75e1a4f17cc705f447aa14a9
parentecc09d82dbb510f42f6ef640f73ff3dd088601fa (diff)
downloadmeta-virtualization-144d1ae8973e8c67709d7b544dc53b80bf924754.tar.gz
crun: use REQUIRED_DISTRO_FEATURES to indicate systemd dependency
crun has a hard dependency on systemd, we need to add it to the recipe to avoid failing package QA checks. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--recipes-containers/crun/crun_git.bb4
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes-containers/crun/crun_git.bb b/recipes-containers/crun/crun_git.bb
index 107e08b7..549f6090 100644
--- a/recipes-containers/crun/crun_git.bb
+++ b/recipes-containers/crun/crun_git.bb
@@ -18,7 +18,9 @@ SRC_URI = "git://github.com/containers/crun.git;branch=master;name=crun \
18PV = "0.18+git${SRCREV_crun}" 18PV = "0.18+git${SRCREV_crun}"
19S = "${WORKDIR}/git" 19S = "${WORKDIR}/git"
20 20
21inherit autotools-brokensep pkgconfig 21REQUIRED_DISTRO_FEATURES ?= "systemd"
22
23inherit autotools-brokensep pkgconfig features_check
22 24
23PACKAGECONFIG ??= "" 25PACKAGECONFIG ??= ""
24 26