summaryrefslogtreecommitdiffstats
path: root/include/depends.mk
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-04-18 10:12:50 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-04-18 10:12:50 +0000
commitce03b0650991e557e25fbd0cb1b2c6d3802671e2 (patch)
treeb4487980f853730db467e47774e946e20e520629 /include/depends.mk
parent11aecf7bfdb789eab2a5e5a36a3172a250158501 (diff)
ignore errors in the find command for dep checks
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6997 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include/depends.mk')
-rw-r--r--include/depends.mk2
1 files changed, 1 insertions, 1 deletions
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