From baada2503b364b1ca0f87ce67c1783313fde50a2 Mon Sep 17 00:00:00 2001 From: Tetsuharu OHZEKI Date: Mon, 29 Apr 2013 22:42:56 +0900 Subject: [PATCH] Remove '--quiet' option from git submodule commands in /configure. --- configure | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure b/configure index 3a860a5fe50..7b38465278b 100755 --- a/configure +++ b/configure @@ -370,21 +370,21 @@ then "${CFG_GIT}" submodule status --recursive msg "git: submodule update" - "${CFG_GIT}" submodule --quiet update --init + "${CFG_GIT}" submodule update --init need_ok "git failed" msg "git: submodule foreach sync" - "${CFG_GIT}" submodule --quiet foreach --recursive 'if test -e .gitmodules; then git submodule sync; fi' + "${CFG_GIT}" submodule foreach --recursive 'if test -e .gitmodules; then git submodule sync; fi' need_ok "git failed" msg "git: submodule foreach update" - "${CFG_GIT}" submodule --quiet update --init --recursive + "${CFG_GIT}" submodule update --init --recursive need_ok "git failed" msg "git: submodule clobber" - "${CFG_GIT}" submodule --quiet foreach --recursive git clean -dxf + "${CFG_GIT}" submodule foreach --recursive git clean -dxf need_ok "git failed" - "${CFG_GIT}" submodule --quiet foreach --recursive git checkout . + "${CFG_GIT}" submodule foreach --recursive git checkout . need_ok "git failed" cd ${CFG_BUILD_DIR}