diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-05-29 17:34:06 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-05-29 17:37:24 +0200 |
commit | d618986a1cbaf5826dbb12fe0544c645906810a6 (patch) | |
tree | a9e9a787297a079cecb26acdae5574cd29672d3b /buildconf | |
parent | 6531d089e514ae723241b7a593ed5f8152900ea7 (diff) | |
download | curl-d618986a1cbaf5826dbb12fe0544c645906810a6.tar.gz |
Revert "buildconf: use find -execdir"
This partially reverts commit c712009838f44211958854de431315586995bc61.
Keep the ares_ files removed but bring back the older way to run find,
to make it work with busybox's find, as apparently that's being used.
Reported-by: Max Peal
Fixes #5483
Closes #5484
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ findtool(){ # removethis(){ if test "$#" = "1"; then - find . -depth -name $1 -execdir rm -rf {} \; + find . -depth -name $1 -print -exec rm -rf {} \; fi } |