diff options
author | Takeshi ISHII <2170248+mtei@users.noreply.github.com> | 2022-03-03 23:27:21 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-03 14:27:21 +0000 |
commit | 75b40dc7a537e7f223a73c165a3f6f0e2e91817c (patch) | |
tree | eae64e6ad26f99bebfa75530cdd91b93092144ee /keyboards/helix | |
parent | 96b6ddf4bf79f22f850504d205a57e2730578b3b (diff) | |
download | qmk_firmware-75b40dc7a537e7f223a73c165a3f6f0e2e91817c.tar.gz qmk_firmware-75b40dc7a537e7f223a73c165a3f6f0e2e91817c.zip |
Fix mistakes in the include path in `helix/rev2/local_features.mk`. (#16507)
```diff
--- a/keyboards/helix/rev2/local_features.mk
+++ b/keyboards/helix/rev2/local_features.mk
@@ -6,7 +6,7 @@
#
KEYBOARD_LOCAL_FEATURES_MK :=
--include $(strip $(HELIX_TOP_DIR)/pico/override_helix_options.mk) ## File ded icated to maintenance
+-include $(strip $(HELIX_TOP_DIR)/rev2/override_helix_options.mk) ## File dedicated to maintenance
```
Diffstat (limited to 'keyboards/helix')
-rw-r--r-- | keyboards/helix/rev2/local_features.mk | 2 | ||||
-rw-r--r-- | keyboards/helix/rev2/override_helix_options.mk | 8 |
2 files changed, 6 insertions, 4 deletions
diff --git a/keyboards/helix/rev2/local_features.mk b/keyboards/helix/rev2/local_features.mk index 1484312064..cfff8fd64d 100644 --- a/keyboards/helix/rev2/local_features.mk +++ b/keyboards/helix/rev2/local_features.mk @@ -6,7 +6,7 @@ # KEYBOARD_LOCAL_FEATURES_MK := --include $(strip $(HELIX_TOP_DIR)/pico/override_helix_options.mk) ## File dedicated to maintenance +-include $(strip $(HELIX_TOP_DIR)/rev2/override_helix_options.mk) ## File dedicated to maintenance # Parse 'HELIX=xx,yy,zz' option ifneq ($(strip $(HELIX)),) diff --git a/keyboards/helix/rev2/override_helix_options.mk b/keyboards/helix/rev2/override_helix_options.mk index a6d3331e80..56dee8ce78 100644 --- a/keyboards/helix/rev2/override_helix_options.mk +++ b/keyboards/helix/rev2/override_helix_options.mk @@ -1,6 +1,8 @@ -$(info -------------------------) -$(info override_helix_options.mk) -$(info -------------------------) +ifneq ($(strip $(HELIX)),) + $(info -------------------------) + $(info override_helix_options.mk) + $(info -------------------------) +endif define HELIX_OVERRIDE_PARSE ifeq ($(strip $1),back) |