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

Why is catkin trying to include a cmake file from a different workspace?

asked 2020-02-12 22:31:33 -0500

M@t gravatar image

updated 2020-02-12 22:42:03 -0500

I used to have a catkin workspace called "cepton_ros" that I was doing some development in. Things went sideways so I deleted the whole folder to start afresh from the remote repo.

However, now when I trying building any other workspace with catkin_make, it fails with the following error:

CMake Error at /opt/ros/kinetic/share/catkin/cmake/catkinConfig.cmake:83 (find_package): 
  Could not find a package configuration file provided by "cepton_ros" with                                            
  any of the following names: 

    cepton_rosConfig.cmake                                                                                               
    cepton_ros-config.cmake 

  Add the installation prefix of "cepton_ros" to CMAKE_PREFIX_PATH or set                                              
  "cepton_ros_DIR" to a directory containing one of the above files.  If                                               
  "cepton_ros" provides a separate development package or SDK, be sure it has                                          
  been installed. 
Call Stack (most recent call first):                                                                                   
  CMakeLists.txt:38 (find_package)

The "cepton_ros" folder no longer exists, and isn't even related to the other workspaces that I'm trying to build. Clearly I have somehow set the base ROS or catkin installation to look for this repository. How did I (likely) manage to do this? And how can I clear the settings to fix the problem?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2020-02-12 23:39:22 -0500

ahendrix gravatar image

It looks like something is calling the cmake find_package() command and passing in cepton_ros as one of the packages to find. This might be something in your local workspace, or might be something in /opt/ros/kinetic

A grep -r cepton_ros will likely find the offending files. If they're in your local workspace, you'll probably know how to deal with them.

If you find files in /opt/ros/kinetic that are referencing ceptop_ros, they're probably a result of doing a catkin install from the old workspace into /opt/ros/kinetic at some point; and there's a decent chance that there are other references to deleted packages in /opt/ros/kinetic too. If that is the case, I recommend that you remove that directory and any ROS packages that you installed through your package manager and then reinstall ROS.

edit flag offensive delete link more

Comments

You're right ahendrix, running grep -r cepton_ros in my /opt/ros/kinetic directory identified this file as the culprit:

share/catkin/cmake/toplevel.cmake:  cepton_ros

Upon viewing the file, it looks like I somehow managed to copy the CMakeLists file from my local cepton_ros workspace to this toplevel file. Obviously this shouldn't be the case! Following the solution given in this ROS Answers issue, I re-installed catkin with

sudo apt-get install --reinstall ros-kinetic-catkin

And this fixed the issue!

M@t gravatar image M@t  ( 2020-02-13 14:25:14 -0500 )edit

If you managed to overwrite one file in /opt/ros/kinetic, there may be other. Since you installed ROS from apt, you should be able to reinstall all packages with sudo apt-get install --reinstall $(dpkg -l | grep -o 'ros-kinetic-\S*')

ahendrix gravatar image ahendrix  ( 2020-02-13 15:56:24 -0500 )edit

Question Tools

2 followers

Stats

Asked: 2020-02-12 22:31:33 -0500

Seen: 231 times

Last updated: Feb 12 '20