summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2025-03-27 21:36:25 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-03-28 11:19:40 +0000
commitd1f59f72673d08d813f1c6a31389255fa1f4d871 (patch)
treed097de6c426b5f92f5f89a3b8ec809e2e37e3d20
parent1c3020f173702d3415c157774711c69ffcf880e7 (diff)
downloadpoky-d1f59f72673d08d813f1c6a31389255fa1f4d871.tar.gz
coreutils: add missing ptest dependencies
One tests needs xz, and the acl and attr tests if enabled need the corresponding tools. (From OE-Core rev: 9caa68b9af19fea283ecdd55c4a8afd371fe388a) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/coreutils/coreutils_9.6.bb5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-core/coreutils/coreutils_9.6.bb b/meta/recipes-core/coreutils/coreutils_9.6.bb
index 6db435cfcb..d89c75ba66 100644
--- a/meta/recipes-core/coreutils/coreutils_9.6.bb
+++ b/meta/recipes-core/coreutils/coreutils_9.6.bb
@@ -222,4 +222,7 @@ do_install_ptest:append:libc-musl () {
222 sed -i -e '/tests\/dd\/no-allocate.sh/d' ${D}${PTEST_PATH}/Makefile 222 sed -i -e '/tests\/dd\/no-allocate.sh/d' ${D}${PTEST_PATH}/Makefile
223 sed -i -e '/tests\/split\/line-bytes.sh/d' ${D}${PTEST_PATH}/Makefile 223 sed -i -e '/tests\/split\/line-bytes.sh/d' ${D}${PTEST_PATH}/Makefile
224} 224}
225RDEPENDS:${PN}-ptest += "${PN}-getlimits" 225
226RDEPENDS:${PN}-ptest += "${PN}-getlimits xz \
227 ${@bb.utils.contains('PACKAGECONFIG', 'acl', 'acl', '', d)} \
228 ${@bb.utils.contains('PACKAGECONFIG', 'xattr', 'attr', '', d)}"