Browse Source

ignore errors in the find command for dep checks

SVN-Revision: 6997
Felix Fietkau 18 years ago
parent
commit
a3a9e039d8
1 changed files with 1 additions and 1 deletions
  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