From 109f15b54cd3932df9b41ad6e681351fe7c5146a Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Thu, 26 Jul 2007 11:32:13 +0000 Subject: [PATCH] ignore filenames that can cause problems for the recursive dependency handling SVN-Revision: 8171 --- include/depends.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/depends.mk b/include/depends.mk index 1e01d35f81..be58ed1cf0 100644 --- a/include/depends.mk +++ b/include/depends.mk @@ -11,9 +11,9 @@ # 3: tempfile for file listings # 4: find options -DEP_FINDPARAMS := -type f -not -name ".*" -and -not -path "*.svn*" +DEP_FINDPARAMS := -type f -not -name ".*" -and -not -path "*.svn*" -type f -not -name ".*" -and -not -path "*.svn*" -and -not -path "*:*" -and -not -path "*!*" -and -not -path "* *" -and -not -path "*\\\#*" define rdep - $(foreach file,$(shell find $(1) $(DEP_FINDPARAMS) -and -not -path "*:*" $(4)), + $(foreach file,$(shell find $(1) $(DEP_FINDPARAMS) $(4)), $(2): $(file) $(file): ; ) -- 2.30.2