From 144d1ae8973e8c67709d7b544dc53b80bf924754 Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Fri, 23 Apr 2021 10:32:24 -0400 Subject: 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 --- recipes-containers/crun/crun_git.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 \ PV = "0.18+git${SRCREV_crun}" S = "${WORKDIR}/git" -inherit autotools-brokensep pkgconfig +REQUIRED_DISTRO_FEATURES ?= "systemd" + +inherit autotools-brokensep pkgconfig features_check PACKAGECONFIG ??= "" -- cgit v1.2.3-54-g00ecf