From: Eric Botcazou Date: Thu, 17 Nov 2005 12:18:22 +0000 (+0100) Subject: backport: gcc_update: When svn update is called and --silent is used, pass -q. X-Git-Tag: releases/gcc-3.4.5~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e8d1d16f4ebc1974729df78da9308a0a4be6216;p=thirdparty%2Fgcc.git backport: gcc_update: When svn update is called and --silent is used, pass -q. Backport from mainline: * gcc_update: When svn update is called and --silent is used, pass -q. From-SVN: r107118 --- diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 22d5147aec35..9e7315d36831 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,8 @@ +2005-11-17 Eric Botcazou + + Backport from mainline: + * gcc_update: When svn update is called and --silent is used, pass -q. + 2005-11-01 Joseph S. Myers * gcc_update: Include revision number in LAST_UPDATED. diff --git a/contrib/gcc_update b/contrib/gcc_update index 9ae4b96d8b04..b89a9af6a431 100755 --- a/contrib/gcc_update +++ b/contrib/gcc_update @@ -222,7 +222,8 @@ else fi chat "Updating SVN tree" -$GCC_SVN --non-interactive -q update ${1+"$@"} + +$GCC_SVN ${silent+-q} --non-interactive update ${1+"$@"} if [ $? -ne 0 ]; then (touch_files_reexec) echo "SVN update of full tree failed." >&2