diff options
author | 2016-04-15 13:09:42 -0500 | |
---|---|---|
committer | 2016-04-15 13:09:42 -0500 | |
commit | 39e520c010072aa17c0bcb2c5bfbbee08e010170 (patch) | |
tree | 4f9b28ad7bc26f2b62ee2bd966b04cbd0f1f5e79 /tmk_core/protocol/lufa.mk | |
parent | 66c1024bd328b687fba0645f70469094e75d624c (diff) | |
parent | ee2ee7f4f049dda385a9db7dddd8e7e91681315b (diff) | |
download | qmk_firmware-39e520c010072aa17c0bcb2c5bfbbee08e010170.tar.gz |
Prepping for merge with new_defaults
Diffstat (limited to 'tmk_core/protocol/lufa.mk')
-rw-r--r-- | tmk_core/protocol/lufa.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/protocol/lufa.mk b/tmk_core/protocol/lufa.mk index f3209c227..9ac6298f1 100644 --- a/tmk_core/protocol/lufa.mk +++ b/tmk_core/protocol/lufa.mk @@ -17,7 +17,7 @@ LUFA_SRC = $(LUFA_DIR)/lufa.c \ $(LUFA_DIR)/descriptor.c \ $(LUFA_SRC_USB) -ifeq ($(MIDI_ENABLE), yes) +ifeq ($(strip $(MIDI_ENABLE)), yes) LUFA_SRC += $(LUFA_DIR)/midi/midi.c \ $(LUFA_DIR)/midi/midi_device.c \ $(LUFA_DIR)/midi/bytequeue/bytequeue.c \ @@ -25,7 +25,7 @@ ifeq ($(MIDI_ENABLE), yes) $(LUFA_SRC_USBCLASS) endif -ifeq ($(BLUETOOTH_ENABLE), yes) +ifeq ($(strip $(BLUETOOTH_ENABLE)), yes) LUFA_SRC += $(LUFA_DIR)/bluetooth.c \ $(TMK_DIR)/protocol/serial_uart.c endif |