소스 검색

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 <[email protected]>

SVN-Revision: 37388
Jonas Gorski 12 년 전
부모
커밋
8e12b39d5d
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      include/package-ipkg.mk

+ 2 - 2
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; \
 	)