aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-06-10 23:40:00 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-06-10 23:40:00 +0200
commit38d4abf5103c1abbe0f409d342ebb4e71404b7e9 (patch)
tree1088dbb66240d9dffbf3269f0ab41e21bd8816ec
parentb304ba4c52b2927624d664776a588ed18b8c4703 (diff)
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
-rwxr-xr-xbuildconf2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildconf b/buildconf
index 8fe42ced2..3da0f7b68 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
}