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

Even though this was a new workspace, I created another one from scratch. I even moved the entire random_walk package folder over... and it just worked.

mkdir -p ~/test_space/src
cd ~/test_space/src/
catkin_init_workspace

cd ..
catkin_make
# /opt/ros/indigo/setup.bash already sourced in .bashrc
source devel/setup.bash
cp -r ~/other_wksp_path/src/random_walk ./src/

Even though this was a new workspace, I created another one from scratch. In the workspace I even moved was working in at the entire time, I originally had the CMakeList lines out of order. Running catkin_make clean didn't have an affect on my issue. After creating a new workspace, I copied the random_walk package folder over... that is verbatim to what I have posted above and it just worked.the problem magically vanished.

mkdir -p ~/test_space/src
cd ~/test_space/src/
catkin_init_workspace

cd ..
catkin_make
# /opt/ros/indigo/setup.bash already sourced in .bashrc
source devel/setup.bash
cp -r ~/other_wksp_path/src/random_walk ./src/

Even though this was a new workspace, I created another one from scratch. In the workspace I was working in at the time, I originally had the CMakeList lines out of order. Running catkin_make clean didn't have an affect on my issue. After creating a new workspace, I copied the random_walk folder that is verbatim to what I have posted above and the problem magically vanished.

mkdir -p ~/test_space/src
cd ~/test_space/src/
catkin_init_workspace

cd ..
catkin_make
# /opt/ros/indigo/setup.bash already sourced in .bashrc
source devel/setup.bash
cp -r ~/other_wksp_path/src/random_walk ./src/
catkin_make random_walk