Skip to content
Snippets Groups Projects
Commit 56187950 authored by Ludwig Knüpfer's avatar Ludwig Knüpfer
Browse files

allow for differing RIOT* paths

parent 50a2dbea
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,7 @@ debug:
$(DEBUGGER) $(DEBUGGER_FLAGS)
buildtest:
@for BOARD in $$(sed -n -e 's/ifeq[^,]*,\([^)]*\))/\1/p' $(RIOTBASE)/boards/Makefile.base); do \
@for BOARD in $$(sed -n -e 's/ifeq[^,]*,\([^)]*\))/\1/p' $(RIOTBOARD)/Makefile.base); do \
echo -n "Building for $${BOARD} .. "; \
env -i PATH=$${PATH} BOARD=$${BOARD} $(MAKE) -B clean all >/dev/null 2>&1 && echo "success" || echo "failed" ; \
env -i PATH=$${PATH} BOARD=$${BOARD} RIOTBASE=$${RIOTBASE} RIOTBOARD=$${RIOTBOARD} RIOTCPU=$${RIOTCPU} $(MAKE) -B clean all >/dev/null 2>&1 && echo "success" || echo "failed" ; \
done
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