ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

This error can occur when you have cyclical dependencies. Does your package depend on a package that also depends on your package? Sorry for the confusing wording, but I don't know of a better way to say it.

This error can occur when you have cyclical dependencies. Does your package depend on a package that also depends on your package? Sorry for the confusing wording, but I don't know of a better way to say it.

EDIT

Here's an example of a cyclical dependency:

Package A is called my_robot_config. Package B is called my_robot_sensors.

In the manifest.xml files:

my_robot_config

<depend package="my_robot_sensors" />

my_robot_sensors

<depend package="my_robot_config" />

All you have to do is look through the manifest.xml files in your packages to make sure that two packages don't depend on one another.