From: Felix Fietkau Date: Wed, 18 Apr 2007 10:12:50 +0000 (+0000) Subject: ignore errors in the find command for dep checks X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=a3a9e039d87cbcd2efc47004e8bce099570a9020;p=openwrt%2Fstaging%2Fansuel.git ignore errors in the find command for dep checks SVN-Revision: 6997 --- diff --git a/include/depends.mk b/include/depends.mk index b74e535506..07345a3998 100644 --- a/include/depends.mk +++ b/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