From: Jonas Gorski Date: Mon, 25 May 2015 08:27:55 +0000 (+0000) Subject: image.mk: make image too big warnings more visible X-Git-Tag: reboot~3003 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=497fdc3f09ca5a6c93581ce3dc4f0bba7f726312;p=openwrt%2Fopenwrt.git image.mk: make image too big warnings more visible Output warnings through stderr to allow them to be easilier spotted when building with V=w. Signed-off-by: Jonas Gorski SVN-Revision: 45746 --- diff --git a/include/image.mk b/include/image.mk index 921d78d10d..f6f30c59b0 100644 --- a/include/image.mk +++ b/include/image.mk @@ -321,7 +321,7 @@ endef define Build/check-size @[ $$(($(subst k,* 1024,$(subst m, * 1024k,$(1))))) -gt "$$(stat -c%s $@)" ] || { \ - echo "WARNING: Image file $@ is too big"; \ + echo "WARNING: Image file $@ is too big" >&2; \ rm -f $@; \ } endef @@ -378,7 +378,7 @@ endif define Device/Build/check_size @[ $$(($(subst k,* 1024,$(subst m, * 1024k,$(1))))) -gt "$$(stat -c%s $@)" ] || { \ - echo "WARNING: Image file $@ is too big"; \ + echo "WARNING: Image file $@ is too big" >&2; \ rm -f $@; \ } endef