-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[audio_video_recorder][jsk_rosbag_tools] support ros-o #1807
Conversation
jsk_rosbag_tools/CMakeLists.txt support both noetic>= and Debian
@mqcmd196 could you check if
|
jsk_rosbag_tools/CMakeLists.txt
Outdated
@@ -18,7 +18,7 @@ catkin_package( | |||
CATKIN_DEPENDS | |||
) | |||
|
|||
if($ENV{ROS_DISTRO} STREQUAL "noetic") | |||
if($ENV{ROS_DISTRO} STRGREATER "noetic") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
STRGREATER
does not include "noetic", need to use STRGREATER_EQUAL
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think only using STREQUAL
is better as the advice . It is unpredictable what ROS_DISTRO
will be in the future release. In my environment, the ROS_DISTRO
is one
, not debian
@k-okada
|
@mqcmd196 can we delete |
Yes, ok |
No description provided.