From a5f3b934252ecc51069f0de995528ab94810919c Mon Sep 17 00:00:00 2001 From: Shane Loretz Date: Fri, 25 Mar 2022 09:43:07 -0700 Subject: [PATCH] Skip iceoryx_binding_c Signed-off-by: Shane Loretz --- bazel_ros2_rules/ros2/compute_system_rosdeps.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bazel_ros2_rules/ros2/compute_system_rosdeps.py b/bazel_ros2_rules/ros2/compute_system_rosdeps.py index e5e1d4be..c495d793 100755 --- a/bazel_ros2_rules/ros2/compute_system_rosdeps.py +++ b/bazel_ros2_rules/ros2/compute_system_rosdeps.py @@ -12,14 +12,14 @@ # # This is necessary because: # - Some non-ROS packages don't always install their package manifests -# (cyclonedds, fastcdr, fastrtps, urdfdom_headers) +# (cyclonedds, fastcdr, fastrtps, iceoryx_binding_c, urdfdom_headers) # - Group dependencies aren't supported everywhere and are hard-coded in # some packages (rti-connext-dds-5.3.1) # # See https://docs.ros.org/en/rolling/Installation/Ubuntu-Install-Binary.html # for further reference. SKIPPED_ROSDEP_KEYS = { - 'cyclonedds', 'fastcdr', 'fastrtps', + 'cyclonedds', 'fastcdr', 'fastrtps', 'iceoryx_binding_c', 'rti-connext-dds-5.3.1', 'urdfdom_headers'}