Skip to content
Snippets Groups Projects
Commit 7836f37b authored by Timo Mueller's avatar Timo Mueller
Browse files

catkin: Use ros_prefixed paths consistently

ROS and catkin packages install their assets to paths prefixed by
ros_prefix. As the recipe was trying to collect the assets for the dev
package in the wrong locations, the dev package was empty.

To address this we use the ros_prefix consistently across the recipe.
parent 7e2eb25e
No related branches found
No related tags found
No related merge requests found
......@@ -14,13 +14,14 @@ SRC_URI += "file://0001-CATKIN_WORKSPACES-Don-t-require-.catkin-file.patch"
inherit catkin
FILES_${PN}-dev += "\
${datadir}/eigen/cmake \
${datadir}/ros/cmake \
${prefix}/.catkin \
${prefix}/.rosinstall \
${prefix}/_setup_util.py \
${prefix}/env.sh \
${prefix}/setup.* \
${ros_datadir}/eigen/cmake \
${ros_datadir}/ros/cmake \
${ros_datadir}/.catkin \
${ros_prefix}/.catkin \
${ros_prefix}/.rosinstall \
${ros_prefix}/_setup_util.py \
${ros_prefix}/env.sh \
${ros_prefix}/setup.* \
"
RDEPENDS_${PN}_class-native = ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment