You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to install/run ocam with catkin_make install but failed as followings;
teevr@teevr-NUC7i7BNH:~/ws$ catkin_make install
......
teevr@teevr-NUC7i7BNH:~/ws$ . install/setup.sh
teevr@teevr-NUC7i7BNH:~/ws$ roslaunch ocam ocam_ros.launch
RLException: [ocam_ros.launch] is neither a launch file in package [ocam] nor is [ocam] a launch file name
The traceback for the exception was written to the log file
1 teevr@teevr-NUC7i7BNH:~/ws$
This PR makes catkin_make install work properly, i guess.
@zeropk oh, i was able to run with commands catkin_make, source devel/setup.sh and roslaunch ocam ocam_ros.launch.
but failed with catkin_make install, source install/setup.sh and roslaunch ocam ocam_ros.launch (this should work for packaging or something, i think).
ok. what i'm saying is this PR can solve the 'install' problem above.
i've tested on ROS noetic.
so i want this PR merged (iff there's no flaw).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I wanted to install/run ocam with
catkin_make installbut failed as followings;This PR makes
catkin_make installwork properly, i guess.