diff options
author | Jonas Gorski <jogo@openwrt.org> | 2013-07-18 11:29:18 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2013-07-18 11:29:18 +0000 |
commit | 8e12b39d5dc565df2780f46f615129885439d5fa (patch) | |
tree | a0a881372ace1c2d88bc32aa6c097877307c9991 /include | |
parent | 5d1c80f002deca1bce4bbbe0cb0c0d5cf9b70d8c (diff) | |
download | upstream-8e12b39d5dc565df2780f46f615129885439d5fa.tar.gz upstream-8e12b39d5dc565df2780f46f615129885439d5fa.tar.bz2 upstream-8e12b39d5dc565df2780f46f615129885439d5fa.zip |
build: print missing dependency error to stderr
Allow to see the actual error even when compiling with V=w/V=1 only.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 37388
Diffstat (limited to 'include')
-rw-r--r-- | include/package-ipkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk index 696de156cf..522a1de15f 100644 --- a/include/package-ipkg.mk +++ b/include/package-ipkg.mk @@ -64,8 +64,8 @@ ifneq ($(PKG_NAME),toolchain) echo "$$$$FILE" >> $(PKG_INFO_DIR)/$(1).missing; \ done; \ if [ -f "$(PKG_INFO_DIR)/$(1).missing" ]; then \ - echo "Package $(1) is missing dependencies for the following libraries:"; \ - cat "$(PKG_INFO_DIR)/$(1).missing"; \ + echo "Package $(1) is missing dependencies for the following libraries:" >&2; \ + cat "$(PKG_INFO_DIR)/$(1).missing" >&2; \ false; \ fi; \ ) |