diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2018-10-09 18:04:18 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-10 12:42:40 +0100 |
commit | 6f49e72dbb36d0a42993e7c788c17ff03571ece7 (patch) | |
tree | e51e4fdbdfa623564c5d3522ca8fd5c126d3f8d8 | |
parent | 3274819ce3bb64316853c6f0bb7840c38635c26c (diff) | |
download | openembedded-core-6f49e72dbb36d0a42993e7c788c17ff03571ece7.tar.gz openembedded-core-6f49e72dbb36d0a42993e7c788c17ff03571ece7.tar.bz2 openembedded-core-6f49e72dbb36d0a42993e7c788c17ff03571ece7.zip |
libxml2: move xmlcatalog and xmllint back into libxml2-utils
Packaging of libxml2-utils has been broken since 2011:
http://git.openembedded.org/openembedded-core/commit/?id=76052861cc95fd4ad4c4b9eb6ce4cd1065ad4dc9
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/libxml/libxml2_2.9.8.bb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/recipes-core/libxml/libxml2_2.9.8.bb b/meta/recipes-core/libxml/libxml2_2.9.8.bb index f01cb2cd34..d35f60832a 100644 --- a/meta/recipes-core/libxml/libxml2_2.9.8.bb +++ b/meta/recipes-core/libxml/libxml2_2.9.8.bb @@ -67,12 +67,13 @@ python populate_packages_prepend () { d.setVar('PKG_libxml2', '${MLPREFIX}libxml2') } -PACKAGES += "${PN}-utils ${PN}-python" +PACKAGE_BEFORE_PN += "${PN}-utils" +PACKAGES += "${PN}-python" FILES_${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/*.a" FILES_${PN}-dev += "${libdir}/xml2Conf.sh ${libdir}/cmake/*" -FILES_${PN}-utils += "${bindir}/*" -FILES_${PN}-python += "${PYTHON_SITEPACKAGES_DIR}" +FILES_${PN}-utils = "${bindir}/*" +FILES_${PN}-python = "${PYTHON_SITEPACKAGES_DIR}" do_configure_prepend () { # executables take longer to package: these should not be executable |