1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

[SQUASH ME] make: remove debugging lines

This commit is contained in:
Martine Lenders 2014-08-13 21:14:11 +02:00
parent 87b68e9382
commit 7306552873

View File

@ -21,11 +21,8 @@ ifneq (, $(filter buildtest, $(MAKECMDGOALS)))
endif
BOARDS ?= $(shell find $(RIOTBOARD)/* -maxdepth 0 -type d \! -name *-common -printf '%f ')
$(warning $(BOARDS))
BOARDS := $(filter $(if $(BOARD_WHITELIST), $(BOARD_WHITELIST), %), $(BOARDS))
$(warning $(BOARDS))
BOARDS := $(filter-out $(BOARD_BLACKLIST), $(BOARDS))
$(warning $(BOARDS))
buildtest:
@if [ -z "$${JENKINS_URL}" ] && tput colors 2>&1 > /dev/null; then \