1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

makefiles/buildtests.inc.mk: fix 'clean-intermediates' not cleaning

`clean-intermediates` should be done per board. Without this it only
tries to clean the default board.
This commit is contained in:
cladmi 2018-08-23 15:56:36 +02:00 committed by Gaëtan Harter
parent b88de338d5
commit e9557a6242
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

@ -20,7 +20,7 @@ buildtest:
$(COLOR_ECHO) "$(COLOR_RED)failed!$(COLOR_RESET)" ; \
RESULT=false ; \
fi ; \
$(MAKE) clean-intermediates >/dev/null 2>&1 || true; \
BOARD=$${board} $(MAKE) clean-intermediates >/dev/null 2>&1 || true; \
fi; \
done ; \
$${RESULT}