aboutsummaryrefslogtreecommitdiff
path: root/maintainer-scripts/update_version_svn
diff options
context:
space:
mode:
Diffstat (limited to 'maintainer-scripts/update_version_svn')
-rwxr-xr-xmaintainer-scripts/update_version_svn45
1 files changed, 2 insertions, 43 deletions
diff --git a/maintainer-scripts/update_version_svn b/maintainer-scripts/update_version_svn
index ba47687..1c87f1c 100755
--- a/maintainer-scripts/update_version_svn
+++ b/maintainer-scripts/update_version_svn
@@ -6,7 +6,7 @@
# in $ADD_BRANCHES.
SVNROOT=${SVNROOT:-"file:///svn/gcc"}
-IGNORE_BRANCHES='gcc-(2_95|3_0|3_1|3_2|3_3|3_4|4_0)-branch'
+IGNORE_BRANCHES='gcc-(2_95|3_0|3_1|3_2|3_3|3_4|4_0|4_1)-branch'
ADD_BRANCHES='HEAD autovect-branch'
# Run this from /tmp.
@@ -29,17 +29,10 @@ BRANCHES="${BRANCHES} ${ADD_BRANCHES}"
# ARGS is passed to 'cvs co'
CURR_DATE=`/bin/date +"%Y%m%d"`
-# version is contained within a char*
-textstring_FILES="gcc/version.c"
-
-# version is contained within a #define
-cppdefine_FILES="libstdc++-v3/include/bits/c++config"
-
# version is all there is
datestamp_FILES="gcc/DATESTAMP"
-FILES="$textstring_FILES $cppdefine_FILES $datestamp_FILES"
-DIRS="$textstring_DIRS $cppdefine_DIRS $datestamp_DIRS"
+FILES="$datestamp_FILES"
# Assume all will go well.
RESULT=0
@@ -60,40 +53,6 @@ for BRANCH in $BRANCHES; do
# There are no files to commit yet.
COMMIT_FILES=""
-
- for file in $textstring_FILES; do
- dirname=`basename $file`
- file=`basename $file`
- file="$dirname/$file"
- if test -f $file; then
- /bin/sed <$file >$file.new -e \
- "s/\(.*\"[^ ]*\) [0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/\1 ${CURR_DATE}/"
-
- if /usr/bin/cmp -s $file $file.new; then
- rm -f $file.new
- else
- mv -f $file.new $file
- COMMIT_FILES="$COMMIT_FILES $file"
- fi
- fi
- done
-
- for file in $cppdefine_FILES; do
- dirname=`basename $file`
- file=`basename $file`
- file="$dirname/$file"
- if test -f $file; then
- /bin/sed <$file >$file.new -e \
- "s/\(#.*\) [0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/\1 ${CURR_DATE}/"
-
- if /usr/bin/cmp -s $file $file.new; then
- rm -f $file.new
- else
- mv -f $file.new $file
- COMMIT_FILES="$COMMIT_FILES $file"
- fi
- fi
- done
for file in $datestamp_FILES; do
dirname=`basename $file`