mirror of git://gcc.gnu.org/git/gcc.git
update_version_svn (SVN): Remove obsolete comment.
* update_version_svn (SVN): Remove obsolete comment. (CURR_DATE): Fix description. Fix description of checkout procedure. From-SVN: r169417
This commit is contained in:
parent
1ca99f75ca
commit
176a192a12
|
@ -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>
|
2010-12-18 Tobias Burnus <burnus@net-b.de>
|
||||||
|
|
||||||
* update_web_docs_svn (MANUALS): Add libquadmath.
|
* update_web_docs_svn (MANUALS): Add libquadmath.
|
||||||
|
|
|
@ -15,7 +15,6 @@ export SVNROOT
|
||||||
/bin/mkdir /tmp/$$
|
/bin/mkdir /tmp/$$
|
||||||
cd /tmp/$$
|
cd /tmp/$$
|
||||||
|
|
||||||
# The path to cvs.
|
|
||||||
SVN=${SVN:-/usr/bin/svn}
|
SVN=${SVN:-/usr/bin/svn}
|
||||||
|
|
||||||
# Compute the branches which we should update.
|
# Compute the branches which we should update.
|
||||||
|
@ -26,7 +25,7 @@ BRANCHES=`$SVN ls $SVNROOT/branches \
|
||||||
# Always update the mainline.
|
# Always update the mainline.
|
||||||
BRANCHES="${BRANCHES} ${ADD_BRANCHES}"
|
BRANCHES="${BRANCHES} ${ADD_BRANCHES}"
|
||||||
|
|
||||||
# ARGS is passed to 'cvs co'
|
# This is put into the datestamp files.
|
||||||
CURR_DATE=`/bin/date +"%Y%m%d"`
|
CURR_DATE=`/bin/date +"%Y%m%d"`
|
||||||
|
|
||||||
# version is all there is
|
# version is all there is
|
||||||
|
@ -38,9 +37,7 @@ FILES="$datestamp_FILES"
|
||||||
RESULT=0
|
RESULT=0
|
||||||
for BRANCH in $BRANCHES; do
|
for BRANCH in $BRANCHES; do
|
||||||
echo "Working on \"$BRANCH\"."
|
echo "Working on \"$BRANCH\"."
|
||||||
# Check out the files on the branch. HEAD is a special case; if
|
# Check out the files on the branch. HEAD is in a different namespace.
|
||||||
# you check out files with -r HEAD, CVS will not let you check
|
|
||||||
# in changes.
|
|
||||||
if test "$BRANCH" = HEAD; then
|
if test "$BRANCH" = HEAD; then
|
||||||
for i in $FILES; do
|
for i in $FILES; do
|
||||||
${SVN} -q co -N ${SVNROOT}/trunk/`dirname $i` `basename $i`
|
${SVN} -q co -N ${SVNROOT}/trunk/`dirname $i` `basename $i`
|
||||||
|
|
Loading…
Reference in New Issue