From e2525f7008f3d8d398027314e86675d62920e718 Mon Sep 17 00:00:00 2001 From: Sadek Baroudi Date: Mon, 30 Oct 2023 02:05:15 -0700 Subject: [PATCH] QMK breaking change update: combos by inclusion no longer supported, workaround for this --- users/sadekbaroudi/rules.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/users/sadekbaroudi/rules.mk b/users/sadekbaroudi/rules.mk index 7b4280e3a2..bbc00a10af 100755 --- a/users/sadekbaroudi/rules.mk +++ b/users/sadekbaroudi/rules.mk @@ -53,7 +53,9 @@ ifeq ($(strip $(CASEMODES_ENABLE)), yes) endif ifeq ($(strip $(COMBO_ENABLE)), yes) - SRC += combos.c + # https://github.com/qmk/qmk_firmware/issues/21137#issuecomment-1577898767 - workaround, but not to be promoted + # SRC += combos.c # as of QMK 2023-08-27 release, this is no longer the way + INTROSPECTION_KEYMAP_C = combos.c endif ifeq ($(strip $(AUDIO_ENABLE)), yes)