From: Daniel Stenberg Date: Wed, 10 Jun 2020 21:40:00 +0000 (+0200) Subject: buildconf: remove -print from the find command that removes files X-Git-Tag: curl-7_71_0~36 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=38d4abf5103c1abbe0f409d342ebb4e71404b7e9;p=thirdparty%2Fcurl.git buildconf: remove -print from the find command that removes files It's just too annoying and unnecessary to get a long list of files shown --- diff --git a/buildconf b/buildconf index 8fe42ced2a..3da0f7b688 100755 --- a/buildconf +++ b/buildconf @@ -64,7 +64,7 @@ findtool(){ # removethis(){ if test "$#" = "1"; then - find . -depth -name $1 -print -exec rm -rf {} \; + find . -depth -name $1 -exec rm -rf {} \; fi }