diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-08-27 08:57:08 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-28 15:11:11 +0100 |
commit | d081a85fc76e2b7a469c6c70175ecf7aed9de053 (patch) | |
tree | 200ff20f5515c70a8165361098b72efe5631f3eb /meta/recipes-core | |
parent | 92b554e2c023c14013625e4464df8fa7187e4524 (diff) | |
download | openembedded-core-d081a85fc76e2b7a469c6c70175ecf7aed9de053.tar.gz openembedded-core-d081a85fc76e2b7a469c6c70175ecf7aed9de053.tar.bz2 openembedded-core-d081a85fc76e2b7a469c6c70175ecf7aed9de053.zip |
meta: fix RDEPNEDS for the test related pkgs
Add bash, python or perl to the ptest pkgs to fix the RDEPENDS issues.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/libxml/libxml2.inc | 2 | ||||
-rw-r--r-- | meta/recipes-core/udev/udev.inc | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-core/libxml/libxml2.inc b/meta/recipes-core/libxml/libxml2.inc index 24ea66a0d8..92a25dcc2b 100644 --- a/meta/recipes-core/libxml/libxml2.inc +++ b/meta/recipes-core/libxml/libxml2.inc @@ -27,6 +27,8 @@ BINCONFIG = "${bindir}/xml2-config" inherit autotools pkgconfig binconfig-disabled pythonnative ptest +RDEPENDS_${PN}-ptest += "python-core" + RDEPENDS_${PN}-ptest_append_libc-glibc += "eglibc-gconv-ebcdic-us eglibc-gconv-ibm1141" # We don't DEPEND on binutils for ansidecl.h so ensure we don't use the header diff --git a/meta/recipes-core/udev/udev.inc b/meta/recipes-core/udev/udev.inc index 11204aaa41..280da10b48 100644 --- a/meta/recipes-core/udev/udev.inc +++ b/meta/recipes-core/udev/udev.inc @@ -31,7 +31,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \ file://init" inherit autotools pkgconfig update-rc.d ptest -RDEPENDS_${PN}-ptest += "make" +RDEPENDS_${PN}-ptest += "make perl" libexecdir = "${base_libdir}" EXTRA_OECONF = "--disable-introspection \ |