Skip to content
Snippets Groups Projects
Commit 9534b840 authored by Peter Kietzmann's avatar Peter Kietzmann Committed by GitHub
Browse files

Merge pull request #6483 from cgundogan/pr/buildtest_match_exact

Make: buildtest: match exact board name
parents 7cb379c0 70ceb9ac
Branches
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ buildtest:
BUILDTESTOK=true; \
APP_RETRY=0; \
for BOARD in $$($(MAKE) -s info-boards-supported); do \
RIOTNOLINK=$$(echo $(BOARD_INSUFFICIENT_MEMORY) | grep $${BOARD} 2>&1 >/dev/null && echo 1); \
RIOTNOLINK=$$(echo $(BOARD_INSUFFICIENT_MEMORY) | grep "\<$${BOARD}\>" 2>&1 >/dev/null && echo 1); \
${COLOR_ECHO} -n "Building for $${BOARD} "; \
[ -n "$${RIOTNOLINK}" ] && ${COLOR_ECHO} -n "(no linking) "; \
for NTH_TRY in 1 2 3; do \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment