diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-04-18 10:12:50 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-04-18 10:12:50 +0000 |
commit | ce03b0650991e557e25fbd0cb1b2c6d3802671e2 (patch) | |
tree | b4487980f853730db467e47774e946e20e520629 /include | |
parent | 11aecf7bfdb789eab2a5e5a36a3172a250158501 (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')
-rw-r--r-- | include/depends.mk | 2 |
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 |