Output warnings through stderr to allow them to be easilier spotted
when building with V=w.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 45746
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
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