From 3d6babee9de8448823f99879e951d379b70a8a34 Mon Sep 17 00:00:00 2001 From: Philip Munksgaard Date: Thu, 18 Dec 2014 16:22:10 +0100 Subject: [PATCH] Use `-perm /a+x` instead of `-perm +a+x` in calls to find The use of `+a+x` is deprecated. Fixes #19981. --- mk/tests.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/tests.mk b/mk/tests.mk index 3340f9b4969..61fd736ef35 100644 --- a/mk/tests.mk +++ b/mk/tests.mk @@ -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 \