From 258c0e24f65105aabe9f009049d5333854a62334 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sat, 18 Jul 2026 19:23:18 -0700 Subject: [PATCH] Meta/Make: support '-s' --- Make | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Make b/Make index b2f30fba9a..817d394746 100755 --- a/Make +++ b/Make @@ -55,7 +55,7 @@ do ) done -tests= jobs= oldtest= with_shell= testpen= +tests= jobs= oldtest= with_shell= testpen= silent= clean=: determine_branch () { @@ -111,6 +111,9 @@ do '') jobs=$1 ;; esac ;; + -s) + silent=-s + ;; -noprove | --noprove) oldtest=t ;; @@ -268,6 +271,7 @@ unset SSH_AGENT_PID SSH_CLIENT SSH_TTY SSH_AUTH_SOCK SSH_CONNECTION \ ${make-make} \ $jobs \ + $silent \ ETC_GITCONFIG=$prefix/etc/gitconfig \ ${DEVELOPER:+"DEVELOPER=YesPlease"} \ SPATCH_FLAGS="--all-includes --recursive-includes --patch ." \