aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Berlin <dberlin@dbrelin.org>2005-10-29 01:19:36 +0000
committerDaniel Berlin <dberlin@dbrelin.org>2005-10-29 01:19:36 +0000
commit4eeef5b60f150ed0a428d0348ed5c62a8b8bff9c (patch)
treef1e2100a49930cab4d6ec23553a360946769e7fa
parent6cbcab02f3eb217ab2c24ebb1eb96aadf8446d3b (diff)
2005-10-26 Daniel Berlin <dberlin@dberlin.org>
* update_web_docs_svn: Use -q to quiet svn. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@105987 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--maintainer-scripts/ChangeLog4
-rwxr-xr-xmaintainer-scripts/update_web_docs_svn4
2 files changed, 6 insertions, 2 deletions
diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog
index 3755589e73e..5e5d9e96ca9 100644
--- a/maintainer-scripts/ChangeLog
+++ b/maintainer-scripts/ChangeLog
@@ -1,5 +1,9 @@
2005-10-26 Daniel Berlin <dberlin@dberlin.org>
+ * update_web_docs_svn: Use -q to quiet svn.
+
+2005-10-26 Daniel Berlin <dberlin@dberlin.org>
+
* crontab: Update to reflect reality
2005-10-01 Mark Mitchell <mark@codesourcery.com>
diff --git a/maintainer-scripts/update_web_docs_svn b/maintainer-scripts/update_web_docs_svn
index 7732101da25..ca9cc0f1122 100755
--- a/maintainer-scripts/update_web_docs_svn
+++ b/maintainer-scripts/update_web_docs_svn
@@ -87,7 +87,7 @@ if [ "$RELEASE" = "trunk" ]; then
svn ls -R $SVNROOT/$RELEASE/gcc | grep "\.texi$" |fgrep -v -f/home/gccadmin/scripts/doc_exclude > FILES
# SVN export doesn't function like CVS, in that it doesn't create an entire empty path structure
# Thus, it's easiest to just export the entire tree
- svn export $SVNROOT/$RELEASE gcc
+ svn -q export $SVNROOT/$RELEASE gcc
# # Checkout all the texi files.
# for i in `cat FILES`; do
# svn -q export $SVNROOT/$RELEASE/gcc/$i
@@ -102,7 +102,7 @@ else
svn ls -R $SVNROOT/tags/$RELEASE/gcc | grep "\.texi$" |fgrep -v -f/home/gccadmin/scripts/doc_exclude > FILES
# SVN export doesn't function like CVS, in that it doesn't create an entire empty path structure
# Thus, it's easiest to just export the entire tree
- svn export $SVNROOT/tags/$RELEASE gcc
+ svn -q export $SVNROOT/tags/$RELEASE gcc
# # Checkout all the texi files.
# for i in `cat FILES`; do
# svn -q export $SVNROOT/tags/$RELEASE/gcc/$i