]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
buildconf: remove -print from the find command that removes files
authorDaniel Stenberg <daniel@haxx.se>
Wed, 10 Jun 2020 21:40:00 +0000 (23:40 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 10 Jun 2020 21:40:00 +0000 (23:40 +0200)
It's just too annoying and unnecessary to get a long list of files shown

buildconf

index 8fe42ced2a6bc5f47364f6462adb95122bd452d8..3da0f7b6888ed7133685d6c9f9b75c34256dcd6a 100755 (executable)
--- 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
 }