Skip to content

Commit

Permalink
Convert skip list items to OE naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-rosa committed Apr 3, 2019
1 parent 29cf56c commit 52bc23c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion superflore/generators/bitbake/yocto_recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,12 @@ def generate_rosdistro_conf(basepath, distro, skip_keys=[]):
+ 'ros2.bbclass because not all recipes'
+ ' are generated).\n')
conf_file.write('ROS_USE_PYTHON3 = "yes"\n\n')
oe_skip_keys = map(
lambda i: yoctoRecipe.convert_to_oe_name(i),
skip_keys
)
conf_file.write(yoctoRecipe.generate_multiline_variable(
'ROS_SUPERFLORE_GENERATION_SKIP_LIST', skip_keys))
'ROS_SUPERFLORE_GENERATION_SKIP_LIST', oe_skip_keys))
conf_file.write(
'\n# See generated-recipes-<ROS_DISTRO>/packagegroups/')
conf_file.write('packagegroup-ros-world.bb ')
Expand Down

0 comments on commit 52bc23c

Please sign in to comment.