CLI: Use `shutil.which` to detect gmake, instead of OS check.

This commit is contained in:
Pete Johanson 2020-04-13 16:44:27 +00:00 committed by skullydazed
parent 06b571aa53
commit 6fb048fdaf
1 changed files with 2 additions and 5 deletions

View File

@ -5,6 +5,7 @@ import os
import platform
import subprocess
import shlex
import shutil
import qmk.keymap
@ -28,11 +29,7 @@ def create_make_command(keyboard, keymap, target=None):
A command that can be run to make the specified keyboard and keymap
"""
make_args = [keyboard, keymap]
make_cmd = 'make'
platform_id = platform.platform().lower()
if 'freebsd' in platform_id:
make_cmd = 'gmake'
make_cmd = 'gmake' if shutil.which('gmake') else 'make'
if target:
make_args.append(target)