diff options
author | Drashna Jaelre <drashna@live.com> | 2018-11-06 01:31:56 -0800 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-11-06 11:31:40 -0500 |
commit | 388df5359b913eaf1ce6fb0ef624e430ad010ea5 (patch) | |
tree | 26f5d3aca1f02f2b2b10175120aa690f053c5ad0 | |
parent | 1b3ac77fec9817aad30f8d70f063d3b1eba42403 (diff) | |
download | qmk_firmware-388df5359b913eaf1ce6fb0ef624e430ad010ea5.tar.gz qmk_firmware-388df5359b913eaf1ce6fb0ef624e430ad010ea5.zip |
Fix Spacing issue in makefile that breaks Terminal config
-rw-r--r-- | tmk_core/common.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common.mk b/tmk_core/common.mk index 65dcf96f6..8eac1734f 100644 --- a/tmk_core/common.mk +++ b/tmk_core/common.mk | |||
@@ -46,7 +46,7 @@ ifeq ($(PLATFORM),CHIBIOS) | |||
46 | endif | 46 | endif |
47 | ifeq ($(strip $(AUTO_SHIFT_ENABLE)), yes) | 47 | ifeq ($(strip $(AUTO_SHIFT_ENABLE)), yes) |
48 | TMK_COMMON_SRC += $(CHIBIOS)/os/various/syscalls.c | 48 | TMK_COMMON_SRC += $(CHIBIOS)/os/various/syscalls.c |
49 | else ifeq($(strip $(TERMINAL_ENABLE)), yes) | 49 | else ifeq ($(strip $(TERMINAL_ENABLE)), yes) |
50 | TMK_COMMON_SRC += $(CHIBIOS)/os/various/syscalls.c | 50 | TMK_COMMON_SRC += $(CHIBIOS)/os/various/syscalls.c |
51 | endif | 51 | endif |
52 | endif | 52 | endif |