diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-07-26 11:32:13 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-07-26 11:32:13 +0000 |
commit | 109f15b54cd3932df9b41ad6e681351fe7c5146a (patch) | |
tree | a63650481d1b0a3b7f6c2216d92f73ad9232f0ee /include | |
parent | 7f952696c7a8ddf296bb821634edaef0d4c4d8fb (diff) | |
download | upstream-109f15b54cd3932df9b41ad6e681351fe7c5146a.tar.gz upstream-109f15b54cd3932df9b41ad6e681351fe7c5146a.tar.bz2 upstream-109f15b54cd3932df9b41ad6e681351fe7c5146a.zip |
ignore filenames that can cause problems for the recursive dependency handling
SVN-Revision: 8171
Diffstat (limited to 'include')
-rw-r--r-- | include/depends.mk | 4 |
1 files 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): ; ) |