Skip to content
Snippets Groups Projects
Unverified Commit e9557a62 authored by cladmi's avatar cladmi Committed by Gaëtan Harter
Browse files

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.
parent b88de338
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ buildtest: ...@@ -20,7 +20,7 @@ buildtest:
$(COLOR_ECHO) "$(COLOR_RED)failed!$(COLOR_RESET)" ; \ $(COLOR_ECHO) "$(COLOR_RED)failed!$(COLOR_RESET)" ; \
RESULT=false ; \ RESULT=false ; \
fi ; \ fi ; \
$(MAKE) clean-intermediates >/dev/null 2>&1 || true; \ BOARD=$${board} $(MAKE) clean-intermediates >/dev/null 2>&1 || true; \
fi; \ fi; \
done ; \ done ; \
$${RESULT} $${RESULT}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment