mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-24 05:53:49 +01:00
Merge pull request #706 from LudwigOrtmann/blacklist_fix
use filter instead of findstring in BOARD_BLACKLIST checking
This commit is contained in:
commit
0d0cf751ef
@ -19,7 +19,7 @@ $(error This application only runs on following boards: $(BOARD_WHITELIST))
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(findstring $(BOARD),$(BOARD_BLACKLIST)))
|
||||
ifneq (,$(filter $(BOARD),$(BOARD_BLACKLIST)))
|
||||
$(error This application does not run on following boards: $(BOARD_BLACKLIST))
|
||||
endif
|
||||
endif
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user