https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=213331
--- Comment #2 from Raphael Kubo da Costa <rak...@freebsd.org> --- (In reply to Antoine Brodin from comment #1) > Can't you use something like this? > > .if !defined(CMAKE_NINJA) > USES+= gmake > .endif The problem with this is that it adds a burden to every single port that uses CMake and cannot be built with bmake, which is not very feasible. One thing tcberner@ thought of a while ago was this in Uses/cmake.mk: .if ${USES:Mgmake} .include ${USESDIR}/gmake.mk .endif .if defined(CMAKE_NINJA) .include "${USESDIR}/ninja.mk" .endif which would give preference to ninja as expected. Would something like this be OK? -- You are receiving this mail because: You are on the CC list for the bug.