From 5244c5eb9c27524947090a2cd6b8d51b56c20ad0 Mon Sep 17 00:00:00 2001 From: Kristof Robot Date: Tue, 18 Aug 2015 18:49:04 +0200 Subject: [PATCH] catkin-runtime: including catkin_find (resolves #349) --- recipes-ros/catkin/catkin-runtime_0.6.14.bb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/recipes-ros/catkin/catkin-runtime_0.6.14.bb b/recipes-ros/catkin/catkin-runtime_0.6.14.bb index 5b976a9..a63ec53 100644 --- a/recipes-ros/catkin/catkin-runtime_0.6.14.bb +++ b/recipes-ros/catkin/catkin-runtime_0.6.14.bb @@ -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 }