diff options
author | Drashna Jaelre <drashna@live.com> | 2019-08-26 10:16:46 -0700 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2019-08-28 14:54:06 +0900 |
commit | a75e0b2374eb8b5c1c33315f921dc91048445988 (patch) | |
tree | 15b499fdf22a5cdaa8b5b890bd021a988c6c0094 | |
parent | cfbb03645e553a3c5b3cd06dd3a03c244e5e8ee0 (diff) |
Fix Typo in :flash target for missing bootloader (#6615)
-rw-r--r-- | tmk_core/avr.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/avr.mk b/tmk_core/avr.mk index bdda14a070..775f2a996d 100644 --- a/tmk_core/avr.mk +++ b/tmk_core/avr.mk @@ -347,5 +347,5 @@ else ifeq ($(strip $(BOOTLOADER)), USBasp) else ifeq ($(strip $(BOOTLOADER)), bootloadHID) $(call EXEC_BOOTLOADHID) else - $(PRINT_OK); $(SILENT) || printf "&(MSG_FLASH_BOOTLOADER)" + $(PRINT_OK); $(SILENT) || printf "$(MSG_FLASH_BOOTLOADER)" endif |