summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHongxu Jia <hongxu.jia@windriver.com>2019-06-26 00:13:59 +0800
committerKhem Raj <raj.khem@gmail.com>2019-06-25 14:21:48 -0700
commit500e5b80c09c23d142c7f65d03bd7828570c2b39 (patch)
treea62706fbc4dbe6e76f8a011fe8d83c114167dd11
parenta2597811c9d57885f7ede336a78331c587f28fa1 (diff)
downloadmeta-openembedded-500e5b80c09c23d142c7f65d03bd7828570c2b39.tar.gz
itstool: use libxml2 to instead of python3-lxml
Use libxml2 of oe-core to replace python3-lxml of meta-python since meta-oe does not depend on meta-python Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/itstool/itstool_2.0.5.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/itstool/itstool_2.0.5.bb b/meta-oe/recipes-support/itstool/itstool_2.0.5.bb
index 166e95b3a..bf71ee3ce 100644
--- a/meta-oe/recipes-support/itstool/itstool_2.0.5.bb
+++ b/meta-oe/recipes-support/itstool/itstool_2.0.5.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59c57b95fd7d0e9e238ebbc7ad47c5a5"
5 5
6inherit autotools python3native 6inherit autotools python3native
7 7
8DEPENDS = "python3-lxml-native" 8DEPENDS = "libxml2-native"
9 9
10SRC_URI = "http://files.itstool.org/${BPN}/${BPN}-${PV}.tar.bz2" 10SRC_URI = "http://files.itstool.org/${BPN}/${BPN}-${PV}.tar.bz2"
11SRC_URI[md5sum] = "655c6f78fc64faee45adcc45ccc5a57e" 11SRC_URI[md5sum] = "655c6f78fc64faee45adcc45ccc5a57e"
@@ -18,5 +18,5 @@ do_install_append() {
18 18
19BBCLASSEXTEND = "native" 19BBCLASSEXTEND = "native"
20 20
21RDEPENDS_${PN} += "python3-lxml" 21RDEPENDS_${PN} += "libxml2-python"
22 22