summaryrefslogtreecommitdiff
path: root/maintainer-scripts
diff options
context:
space:
mode:
authordberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4>2005-10-29 01:19:36 +0000
committerdberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4>2005-10-29 01:19:36 +0000
commit2fe86132c703f19022c559e2abbefa3ef2a9ccff (patch)
treef1e2100a49930cab4d6ec23553a360946769e7fa /maintainer-scripts
parent47828efc04d07279c563b3423eec603564eb6aff (diff)
downloadgcc-2fe86132c703f19022c559e2abbefa3ef2a9ccff.tar.gz
2005-10-26 Daniel Berlin <dberlin@dberlin.org>
* update_web_docs_svn: Use -q to quiet svn. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@105987 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'maintainer-scripts')
-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