diff options
Diffstat (limited to 'lib/python/qmk/commands.py')
-rw-r--r-- | lib/python/qmk/commands.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/python/qmk/commands.py b/lib/python/qmk/commands.py index 1fdca1943..5d2a03c9a 100644 --- a/lib/python/qmk/commands.py +++ b/lib/python/qmk/commands.py | |||
@@ -5,6 +5,7 @@ import os | |||
5 | import platform | 5 | import platform |
6 | import subprocess | 6 | import subprocess |
7 | import shlex | 7 | import shlex |
8 | import shutil | ||
8 | 9 | ||
9 | import qmk.keymap | 10 | import qmk.keymap |
10 | 11 | ||
@@ -28,11 +29,7 @@ def create_make_command(keyboard, keymap, target=None): | |||
28 | A command that can be run to make the specified keyboard and keymap | 29 | A command that can be run to make the specified keyboard and keymap |
29 | """ | 30 | """ |
30 | make_args = [keyboard, keymap] | 31 | make_args = [keyboard, keymap] |
31 | make_cmd = 'make' | 32 | make_cmd = 'gmake' if shutil.which('gmake') else 'make' |
32 | |||
33 | platform_id = platform.platform().lower() | ||
34 | if 'freebsd' in platform_id: | ||
35 | make_cmd = 'gmake' | ||
36 | 33 | ||
37 | if target: | 34 | if target: |
38 | make_args.append(target) | 35 | make_args.append(target) |