aboutsummaryrefslogtreecommitdiff
path: root/maintainer-scripts
diff options
context:
space:
mode:
authorgerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4>2011-01-30 19:48:42 +0000
committergerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4>2011-01-30 19:48:42 +0000
commite2c3fbeb5ce5637393dd7598ac6e40b095aeacaa (patch)
tree2795b4a257460f048e3b9f57238fd4d8eda2597b /maintainer-scripts
parent7ef67f663c4753774e0765fa410220d17b1c2902 (diff)
* update_version_svn (SVN): Remove obsolete comment.
(CURR_DATE): Fix description. Fix description of checkout procedure. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169417 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'maintainer-scripts')
-rw-r--r--maintainer-scripts/ChangeLog6
-rwxr-xr-xmaintainer-scripts/update_version_svn7
2 files changed, 8 insertions, 5 deletions
diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog
index 0fff4297643..8ea38a9314f 100644
--- a/maintainer-scripts/ChangeLog
+++ b/maintainer-scripts/ChangeLog
@@ -1,3 +1,9 @@
+2011-01-30 Gerald Pfeifer <gerald@pfeifer.com>
+
+ * update_version_svn (SVN): Remove obsolete comment.
+ (CURR_DATE): Fix description.
+ Fix description of checkout procedure.
+
2010-12-18 Tobias Burnus <burnus@net-b.de>
* update_web_docs_svn (MANUALS): Add libquadmath.
diff --git a/maintainer-scripts/update_version_svn b/maintainer-scripts/update_version_svn
index 736c990da82..b7c7d1f032e 100755
--- a/maintainer-scripts/update_version_svn
+++ b/maintainer-scripts/update_version_svn
@@ -15,7 +15,6 @@ export SVNROOT
/bin/mkdir /tmp/$$
cd /tmp/$$
-# The path to cvs.
SVN=${SVN:-/usr/bin/svn}
# Compute the branches which we should update.
@@ -26,7 +25,7 @@ BRANCHES=`$SVN ls $SVNROOT/branches \
# Always update the mainline.
BRANCHES="${BRANCHES} ${ADD_BRANCHES}"
-# ARGS is passed to 'cvs co'
+# This is put into the datestamp files.
CURR_DATE=`/bin/date +"%Y%m%d"`
# version is all there is
@@ -38,9 +37,7 @@ FILES="$datestamp_FILES"
RESULT=0
for BRANCH in $BRANCHES; do
echo "Working on \"$BRANCH\"."
- # Check out the files on the branch. HEAD is a special case; if
- # you check out files with -r HEAD, CVS will not let you check
- # in changes.
+ # Check out the files on the branch. HEAD is in a different namespace.
if test "$BRANCH" = HEAD; then
for i in $FILES; do
${SVN} -q co -N ${SVNROOT}/trunk/`dirname $i` `basename $i`