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

Revision history [back]

Looking at the contents of catkin_ws/devel there seems to be absolute paths everywhere. You can try to sed 's/caktin_ws/catkin_ws/g' on every file inside your workspace's build and devel folders but I think there is no better option than recompiling everything.

I would recommend you to do the following on a terminal where you haven't sourced caktin_ws/devel/setup.bash

mv caktin_ws catkin_ws
cd catkin_ws
rm -rf build devel
catkin_make
source devel/setup.bash
rospack profile

Don't forget to add the correct source ~/catkin_ws/devel/setup.bash to your ~/.bashrc file if you don't want to source the workspace manually every time you open a console.