Skip to content

Commit 03730a0

Browse files
committed
[jsk_panda_teleop] Fix catkin_install_python usage
The same fixes as jsk-ros-pkg/jsk_recognition#2851 and jsk-ros-pkg/jsk_recognition#2859
1 parent 25dd087 commit 03730a0

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

jsk_panda_robot/jsk_panda_teleop/CMakeLists.txt

+1-5
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ find_package(catkin REQUIRED
66
message_generation
77
)
88

9-
if(NOT $ENV{ROS_DISTRO} STREQUAL "indigo") # on noetic it needs catkin_install_python to support Python3 and it does not work on indigo for some reason...
10-
catkin_python_setup()
11-
endif()
12-
139
add_service_files(
1410
FILES
1511
ControlBilateral.srv
@@ -23,7 +19,7 @@ install(DIRECTORY config launch script
2319
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
2420
USE_SOURCE_PERMISSIONS
2521
)
26-
if(NOT $ENV{ROS_DISTRO} STREQUAL "indigo") # on noetic it needs catkin_install_python to support Python3 and it does not work on indigo for some reason...
22+
if($ENV{ROS_DISTRO} STREQUAL "indigo") # on noetic it needs catkin_install_python to support Python3 and it does not work on indigo for some reason...
2723
install(DIRECTORY python
2824
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
2925
USE_SOURCE_PERMISSIONS

jsk_panda_robot/jsk_panda_teleop/setup.py

-8
This file was deleted.

0 commit comments

Comments
 (0)