Skip to content

Commit

Permalink
build: add missing wildcard for ignoring .pkgdir in dependency checks
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Fietkau <[email protected]>
  • Loading branch information
nbd168 committed Feb 5, 2017
1 parent 07d5fc7 commit 40fb293
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/depends.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 40fb293

Please sign in to comment.