diff options
author | Felix Fietkau <nbd@nbd.name> | 2017-02-05 22:17:24 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2017-02-05 22:17:30 +0100 |
commit | 40fb293f240f14013a203d553add70891d966e34 (patch) | |
tree | 1fda64a647e766eb3d3ac10305f8d50bbbe89cca /include | |
parent | 07d5fc7ada9734c198f0316a872d38932116e5b0 (diff) | |
download | upstream-40fb293f240f14013a203d553add70891d966e34.tar.gz upstream-40fb293f240f14013a203d553add70891d966e34.tar.bz2 upstream-40fb293f240f14013a203d553add70891d966e34.zip |
build: add missing wildcard for ignoring .pkgdir in dependency checks
Signed-off-by: Felix Fietkau <nbd@nbd.name>
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 1b74a840b7..3df51adae3 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" -x "*/.*.swp" -x "*/.pkgdir" +DEP_FINDPARAMS := -x "*/.svn*" -x ".*" -x "*:*" -x "*\!*" -x "* *" -x "*\\\#*" -x "*/.*_check" -x "*/.*.swp" -x "*/.pkgdir*" find_md5=find $(wildcard $(1)) -type f $(patsubst -x,-and -not -path,$(DEP_FINDPARAMS) $(2)) | mkhash md5 |