From 0e8d1d16f4ebc1974729df78da9308a0a4be6216 Mon Sep 17 00:00:00 2001 From: Eric Botcazou Date: Thu, 17 Nov 2005 13:18:22 +0100 Subject: [PATCH] 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 --- contrib/ChangeLog | 5 +++++ contrib/gcc_update | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) 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 -- 2.47.2