From: Chen Qi <[email protected]> We have in this recipe: CRUN_AS_RUNC ?= "true"
The expected behavior is that if we set it to "false", the symlink is not created. Fix the check to achieve this expected behavior. Signed-off-by: Chen Qi <[email protected]> --- recipes-containers/crun/crun_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-containers/crun/crun_git.bb b/recipes-containers/crun/crun_git.bb index edaf15b8..25e76239 100644 --- a/recipes-containers/crun/crun_git.bb +++ b/recipes-containers/crun/crun_git.bb @@ -52,7 +52,7 @@ do_configure:prepend () { do_install() { oe_runmake 'DESTDIR=${D}' install - if [ -n "${CRUN_AS_RUNC}" ]; then + if ${CRUN_AS_RUNC}; then ln -sr "${D}/${bindir}/crun" "${D}${bindir}/runc" fi } -- 2.43.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#9480): https://lists.yoctoproject.org/g/meta-virtualization/message/9480 Mute This Topic: https://lists.yoctoproject.org/mt/116789087/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
