Skip to content
Snippets Groups Projects
Commit e554a197 authored by Gaëtan Harter's avatar Gaëtan Harter
Browse files

makefiles/modules.inc.mk: remove deprecated FEATURE_PERIPH_ macros

`#ifdef FEATURE_PERIPH_NAME` usage should now be replaced by
`#ifdef MODULE_PERIPH_NAME`.

This deprecation was started by pull requests #8226 and #8227.
parent cefb7974
No related branches found
No related tags found
No related merge requests found
ED = $(addprefix FEATURE_,$(sort $(filter $(FEATURES_PROVIDED), $(FEATURES_REQUIRED)))) ED = $(addprefix MODULE_,$(sort $(USEMODULE) $(USEPKG)))
ED += $(addprefix MODULE_,$(sort $(USEMODULE) $(USEPKG)))
EXTDEFINES = $(addprefix -D,$(shell echo '$(ED)' | tr 'a-z-' 'A-Z_')) EXTDEFINES = $(addprefix -D,$(shell echo '$(ED)' | tr 'a-z-' 'A-Z_'))
# filter "pseudomodules" from "real modules", but not "no_pseudomodules" # filter "pseudomodules" from "real modules", but not "no_pseudomodules"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment