Skip to content
Snippets Groups Projects
Unverified Commit b80cdd81 authored by Joakim Nohlgård's avatar Joakim Nohlgård Committed by GitHub
Browse files

Merge pull request #7798 from kaspar030/fix_buildsizes_diff

make: fix info-buildsizes-diff
parents 2a454587 bbae3f32
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ info-buildsizes-diff:
@echo -e "text\tdata\tbss\tdec\tBOARD/BINDIRBASE\n"; \
for board in ${BOARDS}; do \
for BINDIRBASE in $${OLDBIN} $${NEWBIN}; do \
BOARD=$${board} $(MAKE) info-buildsize --no-print-directory 2>/dev/null | tail -n-1 | cut -f-4; \
BINDIRBASE=$${BINDIRBASE} BOARD=$${board} $(MAKE) info-buildsize --no-print-directory 2>/dev/null | tail -n-1 | cut -f-4; \
done | \
while read -a OLD && read -a NEW; do \
for I in 0 1 2 3; do \
......
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