From: Ross Burton Date: Fri, 16 Jul 2021 11:32:25 +0000 (+0100) Subject: parted: fix ptest RRECOMMENDS X-Git-Tag: yocto-4.0~2836 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cebcb4ae46b0860179edfe480e8e4d924f931436;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git parted: fix ptest RRECOMMENDS The recipe was using =, which replaces the default RRECOMMENDS from ptest.bbclass. Signed-off-by: Ross Burton Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-extended/parted/parted_3.4.bb b/meta/recipes-extended/parted/parted_3.4.bb index 96d30372c3f..8728fcae090 100644 --- a/meta/recipes-extended/parted/parted_3.4.bb +++ b/meta/recipes-extended/parted/parted_3.4.bb @@ -49,7 +49,7 @@ do_install_ptest() { sed -e 's| ../parted||' -i $t/tests/*.sh } RDEPENDS_${PN}-ptest = "bash coreutils perl util-linux-losetup util-linux-mkswap python3 make gawk e2fsprogs-mke2fs e2fsprogs-tune2fs python3-core dosfstools" -RRECOMMENDS_${PN}-ptest = "kernel-module-scsi-debug kernel-module-loop kernel-module-vfat" +RRECOMMENDS_${PN}-ptest += "kernel-module-scsi-debug kernel-module-loop kernel-module-vfat" RDEPENDS_${PN}-ptest_append_libc-glibc = "\ glibc-utils \ locale-base-en-us \