Closed
Description
Related to: http://answers.ros.org/question/244214/unable-to-install-because-of-missing-ninja/
Solution:
--- catkin/python/catkin/builder.py.orig 2016-09-24 23:22:12.768371606 -0400
+++ catkin/python/catkin/builder.py 2016-09-24 23:22:20.812554961 -0400
@@ -527,11 +527,11 @@
run_command_colorized(
make_check_cmake_cmd, build_dir, quiet
)
# Run make
- if not use_ninja:
+ if use_ninja:
make_executable = 'ninja'
elif use_nmake:
make_executable = 'nmake'
else:
make_executable = 'make'