From: nbd 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.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=ce03b0650991e557e25fbd0cb1b2c6d3802671e2 ignore errors in the find command for dep checks git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6997 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/include/depends.mk b/include/depends.mk index b74e53550..07345a399 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