Use `-perm /a+x` instead of `-perm +a+x` in calls to find

The use of `+a+x` is deprecated.

Fixes #19981.
This commit is contained in:
Philip Munksgaard 2014-12-18 16:22:10 +01:00
parent 2a231594c4
commit 3d6babee9d
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ tidy:
| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
$(Q)echo $(ALL_HS) \
| xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py
$(Q)find $(S)src -type f -perm +a+x \
$(Q)find $(S)src -type f -perm /a+x \
-not -name '*.rs' -and -not -name '*.py' \
-and -not -name '*.sh' \
| grep '^$(S)src/jemalloc' -v \