Skip to content

Commit

Permalink
yocto_recipe.py: drop ROS_COMPONENT_TYPE
Browse files Browse the repository at this point in the history
* we no longer need to distinguish between ros1 and ros2 components
* fixes ros-infrastructure#255

Signed-off-by: Martin Jansa <[email protected]>
  • Loading branch information
shr-project committed Nov 20, 2019
1 parent f1bd664 commit 979f9bb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions superflore/generators/bitbake/yocto_recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,7 @@ def get_top_inherit_line(self):
return ret

def get_bottom_inherit_line(self):
ret = 'inherit ${ROS_COMPONENT_TYPE}_component\n'
ret += 'inherit ros_${ROS_BUILD_TYPE}\n'
ret = 'inherit ros_${ROS_BUILD_TYPE}\n'
return ret

def trim_hyphens(self, s):
Expand Down

0 comments on commit 979f9bb

Please sign in to comment.