diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-09-03 12:31:18 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-09-03 12:31:18 +0000 |
commit | 6734c999af7372e8e8220efcf30fee1e6463b87c (patch) | |
tree | 8924866f536b5c1c24311564a5210742843d7d04 /include | |
parent | faa7df6ace659111ba02e979cf486a2430fdd156 (diff) | |
download | upstream-6734c999af7372e8e8220efcf30fee1e6463b87c.tar.gz upstream-6734c999af7372e8e8220efcf30fee1e6463b87c.tar.bz2 upstream-6734c999af7372e8e8220efcf30fee1e6463b87c.zip |
ignore vim .swp files when scanning for updates (#7867)
SVN-Revision: 22880
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 828ceb8564..042fd4f4f2 100644 --- a/include/depends.mk +++ b/include/depends.mk @@ -11,7 +11,7 @@ # 3: tempfile for file listings # 4: find options -DEP_FINDPARAMS := -x "*/.svn*" -x ".*" -x "*:*" -x "*\!*" -x "* *" -x "*\\\#*" -x "*/.*_check" +DEP_FINDPARAMS := -x "*/.svn*" -x ".*" -x "*:*" -x "*\!*" -x "* *" -x "*\\\#*" -x "*/.*_check" -x "*/.*.swp" find_md5=$(SH_FUNC) find $(1) -type f $(patsubst -x,-and -not -path,$(DEP_FINDPARAMS) $(2)) | md5s |