diff options
author | Jonas Gorski <jogo@openwrt.org> | 2013-02-21 11:45:18 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2013-02-21 11:45:18 +0000 |
commit | d0891e0ae8f69a0ba87a8c54d84e5a83754384bd (patch) | |
tree | 2dd716f7061976a06b2185a5df952edd24790582 /include/package-bin.mk | |
parent | 88ff7e3f23c3aa406dae1d44a3ea731d279f02da (diff) | |
download | mtk-20170518-d0891e0ae8f69a0ba87a8c54d84e5a83754384bd.zip mtk-20170518-d0891e0ae8f69a0ba87a8c54d84e5a83754384bd.tar.gz mtk-20170518-d0891e0ae8f69a0ba87a8c54d84e5a83754384bd.tar.bz2 |
include/package-bin: print warnings/errors to stderr
Makes warnings/errors visible when building with V=w/V=1.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 35714
Diffstat (limited to 'include/package-bin.mk')
-rw-r--r-- | include/package-bin.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/package-bin.mk b/include/package-bin.mk index 96c1aef..dcb3a8a 100644 --- a/include/package-bin.mk +++ b/include/package-bin.mk @@ -14,7 +14,7 @@ ifeq ($(DUMP),) else compile: $(1)-disabled $(1)-disabled: - @echo "WARNING: skipping $(1) -- package not selected" + @echo "WARNING: skipping $(1) -- package not selected" >&2 endif endif endif |