mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
build system: fix feature resolution
Fix FEATURES_REQUIRED_ANY using more features than needed.
This commit is contained in:
parent
6929577c76
commit
47035fbc2a
@ -32,8 +32,8 @@ FEATURES_USABLE := $(filter-out $(FEATURES_BLACKLIST),$(FEATURES_PROVIDED))
|
||||
FEATURES_REQUIRED_ONE_OUT_OF := $(foreach item,\
|
||||
$(FEATURES_REQUIRED_ANY),\
|
||||
$(word 1,\
|
||||
$(filter $(FEATURES_USED_SO_FAR) $(FEATURES_USABLE),\
|
||||
$(subst |, ,$(item)))\
|
||||
$(filter $(FEATURES_USED_SO_FAR),$(subst |, ,$(item)))\
|
||||
$(filter $(FEATURES_USABLE),$(subst |, ,$(item)))\
|
||||
$(item)))
|
||||
|
||||
# Features that are required by the application but not provided by the BSP
|
||||
|
Loading…
Reference in New Issue
Block a user