浏览代码

ignore errors in the find command for dep checks

SVN-Revision: 6997
Felix Fietkau 18 年之前
父节点
当前提交
a3a9e039d8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/depends.mk

+ 1 - 1
include/depends.mk

@@ -23,6 +23,6 @@ define rdep
   endif
   
   $(3): FORCE
-	@find $(1) $(FINDPARAMS) $(4) 2>/dev/null | md5s > $$@
+	@-find $(1) $(FINDPARAMS) $(4) 2>/dev/null | md5s > $$@
 
 endef