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://207.154.207.93/?a=commitdiff_plain;h=b97528d98e074f062c63cbcf09065e81ed133cce;p=15.05%2Fopenwrt.git 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 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