installing joint state publisher so that it can be used by rosrun
as of right now, setup.py is installing joint_state_publisher into the global bin folder instead of joint_state_publisher's bin folder. This prevents rosrun from running this. With this patch, it will be installed in both places. See https://github.com/ros/xacro/issues/1 for the same discussion on xacro.
This commit is contained in:
parent
98b0927cb1
commit
28acc60e5d
|
@ -6,3 +6,5 @@ find_package(catkin)
|
||||||
catkin_python_setup()
|
catkin_python_setup()
|
||||||
|
|
||||||
catkin_package()
|
catkin_package()
|
||||||
|
|
||||||
|
install(PROGRAMS joint_state_publisher/joint_state_publisher DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})
|
||||||
|
|
Loading…
Reference in New Issue