diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-03-10 18:12:08 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-03-12 23:39:13 +0000 |
commit | b6f295f4b5e5dd6de0c0bd8fffcee2ad46274e80 (patch) | |
tree | b6d5fd2c3e8828c9b4b10ba47c4120c5a34571d7 /meta/recipes-extended | |
parent | bcea309f16cc5985138b8779e624b9f683f24360 (diff) | |
download | poky-b6f295f4b5e5dd6de0c0bd8fffcee2ad46274e80.tar.gz |
findutils: Fix ptest dependency issue
The options used with 'od' don't work with our busybox config.
Add a dependency on the full utility from coreutils to fix execution
in minimal images.
(From OE-Core rev: 027f0997bd9ba68a86000e91ad81fcf9ea1a4f89)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/findutils/findutils_4.9.0.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/findutils/findutils_4.9.0.bb b/meta/recipes-extended/findutils/findutils_4.9.0.bb index e4ce8ee4eb..074817df27 100644 --- a/meta/recipes-extended/findutils/findutils_4.9.0.bb +++ b/meta/recipes-extended/findutils/findutils_4.9.0.bb | |||
@@ -14,7 +14,8 @@ CACHED_CONFIGUREVARS += "gl_cv_func_wcwidth_works=yes" | |||
14 | 14 | ||
15 | EXTRA_OECONF += "ac_cv_path_SORT=${bindir}/sort" | 15 | EXTRA_OECONF += "ac_cv_path_SORT=${bindir}/sort" |
16 | 16 | ||
17 | RDEPENDS:${PN}-ptest += "bash sed grep" | 17 | # need od from coreutils for -t option |
18 | RDEPENDS:${PN}-ptest += "bash sed grep coreutils" | ||
18 | 19 | ||
19 | do_install_ptest:class-target() { | 20 | do_install_ptest:class-target() { |
20 | mkdir -p ${D}${PTEST_PATH}/tests/ | 21 | mkdir -p ${D}${PTEST_PATH}/tests/ |