Revert "2612: Use gmake when available"

This reverts commit d3d1637c3c.
This commit is contained in:
Stephan Seitz 2022-03-08 21:24:57 +01:00 committed by Christian Clason
parent b6002dbeac
commit b8129fac90

View file

@ -105,12 +105,8 @@ function M.select_compile_command(repo, cc, compile_location)
}, },
} }
else else
local make_path = vim.fn.exepath "make"
if vim.fn.executable "gmake" then
make_path = vim.fn.exepath "gmake"
end
return { return {
cmd = make_path, cmd = "make",
info = "Compiling...", info = "Compiling...",
err = "Error during compilation", err = "Error during compilation",
opts = { opts = {