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

If your command sequence is the one you executed, there's the error.

If I get it right you run your first catkin_make inside ROS_TUTORIALS/actionlib/src

This seems strange to me because this should complain, that the source space does not exist. Or did you just forgot to post a cd .. ?

Run catkin_make in the root of your workspace. (in your case ROS_TUTORIALS/actionlib)

Also you have to run source devel/setup.bash from your catkin root directory.

Your second catkin_make is also executed in the wrong directory.

Your directory structure is also not right. The pacakge.xml and CMakeLists.txt shouldn't be in the source dir of your package. They have to be in the root dir of your package. See this site for a correct catkin workspace structure.

(Side notice: I wouldn't name my workspace 'actionlib' as this is already the package name of the actionlib package. I would prefer actionlib_ws.)