]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
backport: gcc_update: When svn update is called and --silent is used, pass -q.
authorEric Botcazou <ebotcazou@libertysurf.fr>
Thu, 17 Nov 2005 12:18:22 +0000 (13:18 +0100)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Thu, 17 Nov 2005 12:18:22 +0000 (12:18 +0000)
Backport from mainline:
* gcc_update: When svn update is called and --silent is used, pass -q.

From-SVN: r107118

contrib/ChangeLog
contrib/gcc_update

index 22d5147aec3534c841c9fa7efb214cbd83005a4f..9e7315d368314e71ff63231c87f0890a23853f61 100644 (file)
@@ -1,3 +1,8 @@
+2005-11-17  Eric Botcazou  <ebotcazou@libertysurf.fr>
+
+       Backport from mainline:
+       * gcc_update: When svn update is called and --silent is used, pass -q.
+
 2005-11-01  Joseph S. Myers  <joseph@codesourcery.com>
 
        * gcc_update: Include revision number in LAST_UPDATED.
index 9ae4b96d8b046b56ac95944e9302719d120eb5c8..b89a9af6a431cf6ae72e9c1340fc5b8006707ab2 100755 (executable)
@@ -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