Merge pull request #350 from KristofRobot/catkin_find

catkin-runtime: including catkin_find (resolves #349)
This commit is contained in:
Lukas Bulwahn 2015-08-19 13:22:46 +02:00
commit 38854bd2bc
1 changed files with 4 additions and 3 deletions

View File

@ -4,10 +4,10 @@ require catkin.inc
S = "${WORKDIR}/catkin-${PV}"
# This package includes ONLY the python packages.
# This package includes ONLY the python packages AND catkin_find
# The catkin_${PV} package includes all other files
# from the catkin tool.
FILES_${PN} = "${PYTHON_SITEPACKAGES_DIR}"
FILES_${PN} = "${PYTHON_SITEPACKAGES_DIR} ${ros_bindir}/catkin_find"
RDEPENDS_${PN}_class-native = ""
RDEPENDS_${PN} = "\
@ -17,7 +17,8 @@ RDEPENDS_${PN} = "\
# Delete everything but the python packages in order to avoid
# that the QA error [installed-vs-shipped] hits on us.
do_install_append() {
rm -rf ${D}${ros_bindir}
rm ${D}${ros_bindir}/catkin_*_*
rm ${D}${ros_bindir}/catkin_make
rm -rf ${D}${ros_datadir}
rm -rf ${D}${ros_libdir}/pkgconfig
}