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.
This commit is contained in:
parent
7e2eb25e51
commit
7836f37b17
|
@ -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 = ""
|
||||
|
|
Loading…
Reference in New Issue