From e737a3a076049ee529c52e8d21fde4c72be8c257 Mon Sep 17 00:00:00 2001
From: Joakim Gebart <joakim.gebart@eistec.se>
Date: Fri, 10 Jul 2015 12:45:06 +0200
Subject: [PATCH] Makefile.buildtests: Avoid parsing error message

"recipe for target xx failed" was printed to stdout when running info-buildsize for missing files
---
 Makefile.buildtests | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.buildtests b/Makefile.buildtests
index 92b66727ba..e6d56b8b62 100644
--- a/Makefile.buildtests
+++ b/Makefile.buildtests
@@ -104,7 +104,7 @@ info-objsize:
 		sort -rnk$${SORTROW}
 
 info-buildsize:
-	@$(SIZE) -dB $(BINDIR)$(APPLICATION).elf
+	@$(SIZE) -dB $(BINDIR)$(APPLICATION).elf || echo ''
 
 info-buildsizes: SHELL=bash
 info-buildsizes:
-- 
GitLab