diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2021-04-23 10:32:24 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2021-04-26 11:17:27 -0400 |
commit | 144d1ae8973e8c67709d7b544dc53b80bf924754 (patch) | |
tree | d2b16d87e305fecf75e1a4f17cc705f447aa14a9 | |
parent | ecc09d82dbb510f42f6ef640f73ff3dd088601fa (diff) | |
download | meta-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.bb | 4 |
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 \ | |||
18 | PV = "0.18+git${SRCREV_crun}" | 18 | PV = "0.18+git${SRCREV_crun}" |
19 | S = "${WORKDIR}/git" | 19 | S = "${WORKDIR}/git" |
20 | 20 | ||
21 | inherit autotools-brokensep pkgconfig | 21 | REQUIRED_DISTRO_FEATURES ?= "systemd" |
22 | |||
23 | inherit autotools-brokensep pkgconfig features_check | ||
22 | 24 | ||
23 | PACKAGECONFIG ??= "" | 25 | PACKAGECONFIG ??= "" |
24 | 26 | ||