summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-06-25 11:30:24 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2012-06-30 12:47:04 +0200
commit5ecbd4a40fc0a320f59bf380aaa780f18b199f7b (patch)
treecf9cdbcbcf8f612e9d333aa8349b672efb3e1d78 /Makefile
parent25cbed68428b2cd987f06f3b38d1b7748b98d37d (diff)
downloadbarebox-5ecbd4a40fc0a320f59bf380aaa780f18b199f7b.tar.gz
barebox-5ecbd4a40fc0a320f59bf380aaa780f18b199f7b.tar.xz
Makefile: echo size check error to stderr
To be able to see it when in my build tests stdout goes to /dev/null Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3756eacefa..3a5c0ce086 100644
--- a/Makefile
+++ b/Makefile
@@ -540,7 +540,7 @@ quiet_cmd_check_file_size = CHKSIZE $@
max_size=`printf "%d" $2`; \
if [ $$size -gt $$max_size ] ; \
then \
- echo "$@ size $$size > of the maximum size $$max_size"; \
+ echo "$@ size $$size > of the maximum size $$max_size" >&2; \
exit 1 ; \
fi;