diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-10-12 12:36:32 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-10-12 12:36:32 -0700 |
| commit | 5b043d712b18e0477e578a47767b35a643acedfd (patch) | |
| tree | 09091fa6e5b9b6d000fbc432280d67b90063bb70 | |
| parent | 86509d8d7ab68c5e4202dea9ff1bfb79409f2f8d (diff) | |
| download | rust-5b043d712b18e0477e578a47767b35a643acedfd.tar.gz rust-5b043d712b18e0477e578a47767b35a643acedfd.zip | |
Fix `find` check for executables
Apparently the fix in d08441b9 didn't catch a recent executable (#17965), but I've verified that this does indeed catch the executable
| -rw-r--r-- | mk/tests.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/tests.mk b/mk/tests.mk index 04be295c271..894c5901228 100644 --- a/mk/tests.mk +++ b/mk/tests.mk @@ -284,7 +284,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 \ |
