With roscompile at 90b9fde.
I have several (IKFast plugin) pkgs that have a plugins.xml (but with a different name) in some subdirectory under the root. Running roscompile on those pkgs results in a plugins.xml file with default content being created in the root of those packages, and an additional kinematics element being appended to the export section of the package.xml file.
As follows (formatting verbatim):
<export>
<moveit_core plugin="${prefix}/sub_dir/plugins.xml"/>
<kinematics plugin="${prefix}/plugins.xml"/></export>
As this is a MoveIt plugin, I expect the moveit_core export to be correct. Why is roscompile adding a kinematics entry here?
With
roscompileat 90b9fde.I have several (IKFast plugin) pkgs that have a
plugins.xml(but with a different name) in some subdirectory under the root. Runningroscompileon those pkgs results in aplugins.xmlfile with default content being created in the root of those packages, and an additionalkinematicselement being appended to theexportsection of thepackage.xmlfile.As follows (formatting verbatim):
As this is a MoveIt plugin, I expect the
moveit_coreexport to be correct. Why isroscompileadding akinematicsentry here?