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 | firmware-388df5359b913eaf1ce6fb0ef624e430ad010ea5.tar.gz firmware-388df5359b913eaf1ce6fb0ef624e430ad010ea5.tar.bz2 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) endif ifeq ($(strip $(AUTO_SHIFT_ENABLE)), yes) TMK_COMMON_SRC += $(CHIBIOS)/os/various/syscalls.c - else ifeq($(strip $(TERMINAL_ENABLE)), yes) + else ifeq ($(strip $(TERMINAL_ENABLE)), yes) TMK_COMMON_SRC += $(CHIBIOS)/os/various/syscalls.c endif endif |