1
0
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:
Ludwig Ortmann 2014-02-15 17:02:38 +01:00
commit 0d0cf751ef

View File

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