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
On Fedora 35 build of qt_gui_cpp fails with this error:
CMake Error:
Running
'/usr/bin/ninja-build' '-C' '/home/eaglesemanation/Documents/Packages/ros2_galactic/build/qt_gui_cpp' '-t' 'recompact'
failed with:
ninja: error: build.ninja:673: bad $-escape (literal $ must be written as $$)
That is caused by hard-coded Make variable $(MAKE) in sip_helper.cmake. If I change it to make everything works correctly, but I'm not sure if it's a good solution.
On my system, CMake defaults to Ninja generator because I have defined environment variable CMAKE_GENERATOR=Ninja. If it's not supported, it should probably be mentioned in docs.
The text was updated successfully, but these errors were encountered:
This started happening to me with rviz on Noetic. No big issue, I don't really need to use Ninja, but just wanted to let others know this is happening.
On Fedora 35 build of
qt_gui_cpp
fails with this error:That is caused by hard-coded Make variable
$(MAKE)
in sip_helper.cmake. If I change it tomake
everything works correctly, but I'm not sure if it's a good solution.On my system, CMake defaults to Ninja generator because I have defined environment variable
CMAKE_GENERATOR=Ninja
. If it's not supported, it should probably be mentioned in docs.The text was updated successfully, but these errors were encountered: