Browse Source

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
  ```
pull/16520/head
Takeshi ISHII 2 years ago
committed by GitHub
parent
commit
75b40dc7a5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions
  1. +1
    -1
      keyboards/helix/rev2/local_features.mk
  2. +5
    -3
      keyboards/helix/rev2/override_helix_options.mk

+ 1
- 1
keyboards/helix/rev2/local_features.mk View File

@ -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)),)


+ 5
- 3
keyboards/helix/rev2/override_helix_options.mk View File

@ -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)


Loading…
Cancel
Save