You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message(WARNING "lsb_release executable not found. Disabling focal-specific workarounds")
elseif (${RELEASE_CODENAME}STREQUAL"focal")
set(UBUNTU_FOCAL 1)
elseif (${RELEASE_CODENAME}STREQUAL"bullseye")
set(DEBIAN_BULLSEYE 1)
endif()
endif()
Building gz-transport on a system where lsb_release is not installed generates a warning (see https://build.ros2.org/job/Jpr__gz_transport_vendor__ubuntu_noble_amd64/3/cmake/). Since we no longer support focal and there's nothing in the code that is conditioned on DEBIAN_BULLSEYE, we should remove this logic in the CMake and any associated macros in the code.
The text was updated successfully, but these errors were encountered:
We have some CMake logic that relies on an external tool,
lsb_release
gz-transport/CMakeLists.txt
Lines 76 to 90 in d09e1e8
Building
gz-transport
on a system wherelsb_release
is not installed generates a warning (see https://build.ros2.org/job/Jpr__gz_transport_vendor__ubuntu_noble_amd64/3/cmake/). Since we no longer supportfocal
and there's nothing in the code that is conditioned onDEBIAN_BULLSEYE
, we should remove this logic in the CMake and any associated macros in the code.The text was updated successfully, but these errors were encountered: