Meta/Make: support '-s'

Junio C Hamano committed Jul 18, 2026 at 19:23 UTC 258c0e24f65105aabe9f009049d5333854a62334
1 file changed +5 -1
Make
+5 -1
@@ -55,7 +55,7 @@ do
55 )
56 done
57
58 -tests= jobs= oldtest= with_shell= testpen=
58 +tests= jobs= oldtest= with_shell= testpen= silent=
59 clean=:
60
61 determine_branch () {
@@ -111,6 +111,9 @@ do
111 '') jobs=$1 ;;
112 esac
113 ;;
114 + -s)
115 + silent=-s
116 + ;;
117 -noprove | --noprove)
118 oldtest=t
119 ;;
@@ -268,6 +271,7 @@ unset SSH_AGENT_PID SSH_CLIENT SSH_TTY SSH_AUTH_SOCK SSH_CONNECTION \
271
272 ${make-make} \
273 $jobs \
274 + $silent \
275 ETC_GITCONFIG=$prefix/etc/gitconfig \
276 ${DEVELOPER:+"DEVELOPER=YesPlease"} \
277 SPATCH_FLAGS="--all-includes --recursive-includes --patch ." \